Package com.strobel.assembler.metadata
Interface IMemberDefinition
-
- All Known Implementing Classes:
BottomType,CompoundTypeDefinition,FieldDefinition,GenericParameter,InvokeDynamicRewriter.IndyHelperBuilder.HelperTypeDefinition,MethodDefinition,MethodHandleConstantRewriter.LcdMHHelperBuilder.HelperTypeDefinition,NullType,PrimitiveType,RecordTypeDefinition,RecordTypeDefinition.RecordMethod,TypeDefinition
public interface IMemberDefinitionUser: Mike Strobel Date: 1/6/13 Time: 5:37 PM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetBriefDescription()TypeReferencegetDeclaringType()java.lang.StringgetDescription()java.lang.StringgetErasedDescription()longgetFlags()java.lang.StringgetFullName()intgetModifiers()java.lang.StringgetName()java.lang.StringgetSimpleDescription()booleanisDeprecated()booleanisFinal()booleanisNonPublic()booleanisPackagePrivate()booleanisPrivate()booleanisProtected()booleanisPublic()booleanisSpecialName()booleanisStatic()booleanisSynthetic()
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getFullName
java.lang.String getFullName()
-
isSpecialName
boolean isSpecialName()
-
getDeclaringType
TypeReference getDeclaringType()
-
getFlags
long getFlags()
-
getModifiers
int getModifiers()
-
isFinal
boolean isFinal()
-
isNonPublic
boolean isNonPublic()
-
isPrivate
boolean isPrivate()
-
isProtected
boolean isProtected()
-
isPublic
boolean isPublic()
-
isStatic
boolean isStatic()
-
isSynthetic
boolean isSynthetic()
-
isDeprecated
boolean isDeprecated()
-
isPackagePrivate
boolean isPackagePrivate()
-
getBriefDescription
java.lang.String getBriefDescription()
-
getDescription
java.lang.String getDescription()
-
getErasedDescription
java.lang.String getErasedDescription()
-
getSimpleDescription
java.lang.String getSimpleDescription()
-
-