Package aQute.bnd.osgi
Class Clazz.Def
- java.lang.Object
-
- aQute.bnd.osgi.Clazz.Def
-
- Direct Known Subclasses:
Clazz.FieldDef
,Clazz.TypeDef
- Enclosing class:
- Clazz
public abstract class Clazz.Def extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description Def(int access)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description int
getAccess()
java.util.Collection<Descriptors.TypeRef>
getAnnotations()
java.lang.Object
getClazz()
abstract java.lang.String
getName()
Descriptors.TypeRef
getOwnerType()
abstract Descriptors.TypeRef[]
getPrototype()
abstract Descriptors.TypeRef
getType()
boolean
isAbstract()
boolean
isEnum()
boolean
isFinal()
boolean
isInterface()
boolean
isNative()
boolean
isPrivate()
boolean
isProtected()
boolean
isPublic()
boolean
isStatic()
boolean
isSynthetic()
boolean
isTransient()
boolean
isVolatile()
-
-
-
Method Detail
-
getAccess
public int getAccess()
-
isEnum
public boolean isEnum()
-
isPublic
public boolean isPublic()
-
isAbstract
public boolean isAbstract()
-
isProtected
public boolean isProtected()
-
isFinal
public boolean isFinal()
-
isStatic
public boolean isStatic()
-
isPrivate
public boolean isPrivate()
-
isNative
public boolean isNative()
-
isTransient
public boolean isTransient()
-
isVolatile
public boolean isVolatile()
-
isInterface
public boolean isInterface()
-
isSynthetic
public boolean isSynthetic()
-
getAnnotations
public java.util.Collection<Descriptors.TypeRef> getAnnotations()
-
getOwnerType
public Descriptors.TypeRef getOwnerType()
-
getName
public abstract java.lang.String getName()
-
getType
public abstract Descriptors.TypeRef getType()
-
getPrototype
public abstract Descriptors.TypeRef[] getPrototype()
-
getClazz
public java.lang.Object getClazz()
-
-