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 IMemberDefinition
User: 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.String
getBriefDescription()
TypeReference
getDeclaringType()
java.lang.String
getDescription()
java.lang.String
getErasedDescription()
long
getFlags()
java.lang.String
getFullName()
int
getModifiers()
java.lang.String
getName()
java.lang.String
getSimpleDescription()
boolean
isDeprecated()
boolean
isFinal()
boolean
isNonPublic()
boolean
isPackagePrivate()
boolean
isPrivate()
boolean
isProtected()
boolean
isPublic()
boolean
isSpecialName()
boolean
isStatic()
boolean
isSynthetic()
-
-
-
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()
-
-