org.snapscript.studio.agent.debug.ScopeBrowser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.studio.agent.debug;
import java.util.Set;
public interface ScopeBrowser {
void browse(Set expand);
void evaluate(Set expand, String expression);
void evaluate(Set expand, String expression, boolean refresh);
}