net.sf.cglib.core
Class Signature

java.lang.Object
  extended bynet.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)
           
 
Method Summary
 boolean equals(java.lang.Object o)
           
 org.objectweb.asm.Type[] getArgumentTypes()
           
 java.lang.String getDescriptor()
           
 java.lang.String getName()
           
 org.objectweb.asm.Type getReturnType()
           
 int hashCode()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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)
Method Detail

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.