net.sf.cglib.core

Class 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(String name, String desc)
Signature(String name, Type returnType, Type[] argumentTypes)

Method Summary

boolean
equals(Object o)
Type[]
getArgumentTypes()
String
getDescriptor()
String
getName()
Type
getReturnType()
int
hashCode()
String
toString()

Constructor Details

Signature

public Signature(String name,
                 String desc)

Signature

public Signature(String name,
                 Type returnType,
                 Type[] argumentTypes)

Method Details

equals

public boolean equals(Object o)

getArgumentTypes

public Type[] getArgumentTypes()

getDescriptor

public String getDescriptor()

getName

public String getName()

getReturnType

public Type getReturnType()

hashCode

public int hashCode()

toString

public String toString()

Copyright (c) 2001 - Apache Software Foundation