blob: 671fa1a7b33e0e3a000d43d707311d5189ccd848 [file] [log] [blame]
package org.jetbrains.debugger.values;
import com.intellij.openapi.util.ActionCallback;
public interface StringValue extends Value {
boolean isTruncated();
int getLength();
/**
* Asynchronously reloads object value with extended size limit
*/
ActionCallback getFullString();
}