Class ClassSignature
- java.lang.Object
-
- com.strobel.assembler.metadata.signatures.ClassSignature
-
-
Field Summary
Fields Modifier and Type Field Description private ClassTypeSignature
_baseClass
private FormalTypeParameter[]
_formalTypeParameters
private ClassTypeSignature[]
_interfaces
-
Constructor Summary
Constructors Modifier Constructor Description private
ClassSignature(FormalTypeParameter[] ftps, ClassTypeSignature sc, ClassTypeSignature[] sis)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(Visitor v)
FormalTypeParameter[]
getFormalTypeParameters()
ClassTypeSignature[]
getInterfaces()
ClassTypeSignature
getSuperType()
static ClassSignature
make(FormalTypeParameter[] ftps, ClassTypeSignature sc, ClassTypeSignature[] sis)
-
-
-
Field Detail
-
_formalTypeParameters
private final FormalTypeParameter[] _formalTypeParameters
-
_baseClass
private final ClassTypeSignature _baseClass
-
_interfaces
private final ClassTypeSignature[] _interfaces
-
-
Constructor Detail
-
ClassSignature
private ClassSignature(FormalTypeParameter[] ftps, ClassTypeSignature sc, ClassTypeSignature[] sis)
-
-
Method Detail
-
make
public static ClassSignature make(FormalTypeParameter[] ftps, ClassTypeSignature sc, ClassTypeSignature[] sis)
-
getFormalTypeParameters
public FormalTypeParameter[] getFormalTypeParameters()
- Specified by:
getFormalTypeParameters
in interfaceSignature
-
getSuperType
public ClassTypeSignature getSuperType()
-
getInterfaces
public ClassTypeSignature[] getInterfaces()
-
accept
public void accept(Visitor v)
-
-