Class TypeDeclaration
- java.lang.Object
-
- org.jd.core.v1.model.javasyntax.declaration.TypeDeclaration
-
- All Implemented Interfaces:
java.lang.Iterable<MemberDeclaration>
,BaseMemberDeclaration
,BaseTypeDeclaration
,Declaration
,MemberDeclaration
,Base<MemberDeclaration>
- Direct Known Subclasses:
AnnotationDeclaration
,EnumDeclaration
,InterfaceDeclaration
,ModuleDeclaration
public abstract class TypeDeclaration extends java.lang.Object implements BaseTypeDeclaration, MemberDeclaration
-
-
Field Summary
Fields Modifier and Type Field Description protected BaseAnnotationReference
annotationReferences
protected BodyDeclaration
bodyDeclaration
protected int
flags
protected java.lang.String
internalTypeName
protected java.lang.String
name
-
Fields inherited from interface org.jd.core.v1.model.javasyntax.declaration.Declaration
FLAG_ABSTRACT, FLAG_ANNOTATION, FLAG_BRIDGE, FLAG_DEFAULT, FLAG_ENUM, FLAG_FINAL, FLAG_INTERFACE, FLAG_MANDATED, FLAG_MODULE, FLAG_NATIVE, FLAG_OPEN, FLAG_PRIVATE, FLAG_PROTECTED, FLAG_PUBLIC, FLAG_STATIC, FLAG_STATIC_PHASE, FLAG_STRICT, FLAG_SUPER, FLAG_SYNCHRONIZED, FLAG_SYNTHETIC, FLAG_TRANSIENT, FLAG_TRANSITIVE, FLAG_VARARGS, FLAG_VOLATILE
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
TypeDeclaration(BaseAnnotationReference annotationReferences, int flags, java.lang.String internalTypeName, java.lang.String name, BodyDeclaration bodyDeclaration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BaseAnnotationReference
getAnnotationReferences()
BodyDeclaration
getBodyDeclaration()
int
getFlags()
java.lang.String
getInternalTypeName()
java.lang.String
getName()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jd.core.v1.util.Base
getFirst, getLast, getList, isList, iterator, size
-
Methods inherited from interface org.jd.core.v1.model.javasyntax.declaration.Declaration
accept
-
-
-
-
Field Detail
-
annotationReferences
protected BaseAnnotationReference annotationReferences
-
flags
protected int flags
-
internalTypeName
protected java.lang.String internalTypeName
-
name
protected java.lang.String name
-
bodyDeclaration
protected BodyDeclaration bodyDeclaration
-
-
Constructor Detail
-
TypeDeclaration
protected TypeDeclaration(BaseAnnotationReference annotationReferences, int flags, java.lang.String internalTypeName, java.lang.String name, BodyDeclaration bodyDeclaration)
-
-
Method Detail
-
getAnnotationReferences
public BaseAnnotationReference getAnnotationReferences()
-
getFlags
public int getFlags()
-
getInternalTypeName
public java.lang.String getInternalTypeName()
-
getName
public java.lang.String getName()
-
getBodyDeclaration
public BodyDeclaration getBodyDeclaration()
-
-