Package net.sf.cglib.core
Class ClassInfo
- java.lang.Object
-
- net.sf.cglib.core.ClassInfo
-
public abstract class ClassInfo extends java.lang.Object
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ClassInfo()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
abstract org.objectweb.asm.Type[]
getInterfaces()
abstract int
getModifiers()
abstract org.objectweb.asm.Type
getSuperType()
abstract org.objectweb.asm.Type
getType()
int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
getType
public abstract org.objectweb.asm.Type getType()
-
getSuperType
public abstract org.objectweb.asm.Type getSuperType()
-
getInterfaces
public abstract org.objectweb.asm.Type[] getInterfaces()
-
getModifiers
public abstract int getModifiers()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-