| java.lang.Object com.bm.ejb3metadata.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 |
JMethod | public JMethod(int access, String name, String descriptor, String signature, String[] exceptions)(Code) | | Constructor.
Parameters: access - the access mode (see org.ejb3unit.asm.Opcodes) Parameters: name - the method's name. Parameters: descriptor - the method's descriptor (seeorg.ejb3unit.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.ejb3unit.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 |
getDescriptor | public String getDescriptor()(Code) | | method descriptor.
method descriptor |
getExceptions | public String[] getExceptions()(Code) | | method exceptions.
method exceptions |
getName | public String getName()(Code) | | method name.
method name |
getSignature | public String getSignature()(Code) | | method signature.
method signature
method signature |
hashCode | public int hashCode()(Code) | | a hash code value for the object.
a hash code value for the object. |
toString | public String toString()(Code) | | string representation.
string representation |
|
|