| 1 | |
package org.webslinger.bsf; |
| 2 | |
|
| 3 | |
import java.util.Map; |
| 4 | |
|
| 5 | |
import org.apache.bsf.BSFManager; |
| 6 | |
import org.apache.bsf.BSFEngine; |
| 7 | |
import org.apache.bsf.BSFException; |
| 8 | |
import org.apache.bsf.util.BSFFunctions; |
| 9 | |
|
| 10 | |
import org.webslinger.vfs.VFSDelegate; |
| 11 | |
|
| 12 | |
public interface GenericEngine extends BSFEngine { |
| 13 | |
String getLanguage(); |
| 14 | |
Map getBeans(); |
| 15 | |
BSFFunctions getBSFFunctions(); |
| 16 | |
boolean getDebug(); |
| 17 | |
void setDebug(boolean debug); |
| 18 | |
boolean isDebugOn(); |
| 19 | |
VFSDelegate<?, Object, ?> getVFSDelegate() throws BSFException; |
| 20 | |
BSFManager getManager(); |
| 21 | |
} |