| java.lang.Object com.google.gwt.dev.util.xml.HandlerMethod
HandlerMethod | final public class HandlerMethod (Code) | | Represents metadata about a handler method in a class derived from
Schema .
|
Method Summary | |
public HandlerArgs | createArgs(Schema schema, int lineNumber, String elemName) | public String | getNormalizedName() | public HandlerParam | getParam(int i) | public int | getParamCount() | public Schema | invokeBegin(int lineNumber, String elemLocalName, Schema target, HandlerArgs args, Object[] outInvokeArgs) | public void | invokeEnd(int lineNumber, String elem, Schema target, Object[] args) | public void | invokeText(int lineNumber, String text, Schema target) | public boolean | isEndMethod() | public boolean | isStartMethod() | public static HandlerMethod | tryCreate(Method method) Attempts to create a handler method from any method. |
getParamCount | public int getParamCount()(Code) | | |
isEndMethod | public boolean isEndMethod()(Code) | | |
isStartMethod | public boolean isStartMethod()(Code) | | |
tryCreate | public static HandlerMethod tryCreate(Method method)(Code) | | Attempts to create a handler method from any method. You can pass in any
method at all, but an exception will be thrown if the method is clearly a
handler but the containing class does not have the proper parameter
metafields.
|
|
|