net.sf.cglib.core
Class Signature
java.lang.Object
net.sf.cglib.core.Signature
- public class Signature
- extends java.lang.Object
A representation of a method signature, containing the method name,
return type, and parameter types.
Constructor Summary |
Signature(java.lang.String name,
java.lang.String desc)
|
Signature(java.lang.String name,
org.objectweb.asm.Type returnType,
org.objectweb.asm.Type[] argumentTypes)
|
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Signature
public Signature(java.lang.String name,
java.lang.String desc)
Signature
public Signature(java.lang.String name,
org.objectweb.asm.Type returnType,
org.objectweb.asm.Type[] argumentTypes)
getName
public java.lang.String getName()
getDescriptor
public java.lang.String getDescriptor()
getReturnType
public org.objectweb.asm.Type getReturnType()
getArgumentTypes
public org.objectweb.asm.Type[] getArgumentTypes()
toString
public java.lang.String toString()
equals
public boolean equals(java.lang.Object o)
hashCode
public int hashCode()
Copyright © 2002-2003 cglib. All Rights Reserved.