Class ClassSignature
- java.lang.Object
-
- com.strobel.assembler.metadata.signatures.ClassSignature
-
-
Field Summary
Fields Modifier and Type Field Description private ClassTypeSignature_baseClassprivate FormalTypeParameter[]_formalTypeParametersprivate ClassTypeSignature[]_interfaces
-
Constructor Summary
Constructors Modifier Constructor Description privateClassSignature(FormalTypeParameter[] ftps, ClassTypeSignature sc, ClassTypeSignature[] sis)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(Visitor v)FormalTypeParameter[]getFormalTypeParameters()ClassTypeSignature[]getInterfaces()ClassTypeSignaturegetSuperType()static ClassSignaturemake(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:
getFormalTypeParametersin interfaceSignature
-
getSuperType
public ClassTypeSignature getSuperType()
-
getInterfaces
public ClassTypeSignature[] getInterfaces()
-
accept
public void accept(Visitor v)
-
-