2003-05-26 13:47:45 +00:00
|
|
|
import java.io.InputStream;
|
2003-05-16 12:48:59 +00:00
|
|
|
import drafts.com.sun.star.script.framework.runtime.XScriptContext;
|
|
|
|
|
|
|
|
public interface OOScriptDebugger {
|
|
|
|
public void go(XScriptContext ctxt, String filename);
|
2003-05-26 13:47:45 +00:00
|
|
|
public void go(XScriptContext ctxt, InputStream in);
|
2003-05-16 12:48:59 +00:00
|
|
|
}
|