| java.lang.Object org.ow2.easybeans.deployment.annotations.JMethod
JMethod | public class JMethod (Code) | | This class defines a Method object. It is not based on reflection but allows
to build a JMethod based on java.lang.reflect.Method
author: Florent Benoit |
Constructor Summary | |
public | JMethod(int access, String name, String descriptor, String signature, String[] exceptions) Constructor.
Parameters: access - the access mode (see org.ow2.easybeans.asm.Opcodes) Parameters: name - the method's name. Parameters: descriptor - the method's descriptor (seeorg.ow2.easybeans.asm.Type Type). Parameters: signature - the method's signature. | public | JMethod(Method m) Constructor. |
JMethod | public JMethod(int access, String name, String descriptor, String signature, String[] exceptions)(Code) | | Constructor.
Parameters: access - the access mode (see org.ow2.easybeans.asm.Opcodes) Parameters: name - the method's name. Parameters: descriptor - the method's descriptor (seeorg.ow2.easybeans.asm.Type Type). Parameters: signature - the method's signature. May be null if themethod parameters, return type and exceptions do not use generictypes. Parameters: exceptions - the internal names of the method's exception classes(seeorg.ow2.easybeans.asm.Type.getInternalName getInternalName).May be null. |
equals | public boolean equals(Object obj)(Code) | | Indicates whether some other object is "equal to" this one.
Parameters: obj - object to compare true if given object is equals |
getAccess | public int getAccess()(Code) | | the access mode (see org.ow2.easybeans.asm.Opcodes) |
getDescriptor | public String getDescriptor()(Code) | | method descriptor |
getExceptions | public String[] getExceptions()(Code) | | method exceptions |
getSignature | public String getSignature()(Code) | | method signature |
hashCode | public int hashCode()(Code) | | a hash code value for the object. |
toString | public String toString()(Code) | | string representation |
|
|