| |
|
| java.beans.MethodDescriptor com.caucho.es.wrapper.ESMethodDescriptor
ESMethodDescriptor | public class ESMethodDescriptor extends MethodDescriptor (Code) | | Describes a method from a JavaScript perspective.
|
overwrite | boolean overwrite(Code) | | |
staticVirtual | boolean staticVirtual(Code) | | |
ESMethodDescriptor | public ESMethodDescriptor(Method method, boolean overwrite, boolean staticVirtual) throws IntrospectionException(Code) | | Create a new method descriptor.
Parameters: method - the underlying java method. Parameters: overwrite - true if this method should overwrite the standard one. Parameters: staticVirtual - true if this is a "static-virtual" method. |
getDeclaringClass | public Class getDeclaringClass()(Code) | | Returns the declaring class for the method.
|
getMethodClassName | public String getMethodClassName()(Code) | | Returns the class name for the method, i.e. the class we should
cast to get the right method.
|
getParameterTypes | public Class[] getParameterTypes()(Code) | | Returns the method's parameter types.
|
getReturnType | public Class getReturnType()(Code) | | Returns the return type of the method.
|
isOverwrite | boolean isOverwrite()(Code) | | True if this overwrites the standard method.
|
isStatic | public boolean isStatic()(Code) | | True if this is a static method.
|
isStaticVirtual | public boolean isStaticVirtual()(Code) | | |
|
|
|