1 30 package com.genimen.djeneric.tools.scriptengine.core.util; 31 32 public interface FunctionSupport 33 { 34 35 public Object call(Object self, String function, Object [] params, DjScriptExecutionTimeScope context) 36 throws Exception ; 37 38 public Object staticCall(String function, Object [] params, DjScriptExecutionTimeScope context) throws Exception ; 39 40 public boolean isStaticCall(String function); 41 42 public boolean isCall(String function); 43 44 } | Popular Tags |