| javaparser.ParserTreeNode javaparser.TypeNode javaparser.ClassNode
ClassNode | public class ClassNode extends TypeNode (Code) | | class or interface.
|
Inner Class : enum MainModifier | |
classOrInterfacenamefullName | public String classOrInterfacenamefullName(Code) | | |
isInterface | final public boolean isInterface(Code) | | |
modifiersInt | public int[] modifiersInt(Code) | | |
addClassOrInterfaceBodyDeclaration | public static void addClassOrInterfaceBodyDeclaration(SimplifiedSyntaxTree2 sst, RAWParserTreeNode cibd, ParserTreeNode destination, TypeNode parentType)(Code) | | add all methods, constructors, fields of the body
Parameters: cibd - ClassOrInterfaceBodyDeclaration nodechild0 is modifierschild1 is one of { EnumDeclaration, ConstructorDeclaration,MethodDeclaration, FieldDeclaration,ClassOrInterfaceDeclaration }special case: static initializer have no modifier node.also used in the enum |
getJavaFullName | public String getJavaFullName()(Code) | | With the package name.
|
getModifiers | public int[] getModifiers()(Code) | | |
getTypeSimpleName | public String getTypeSimpleName()(Code) | | the simple name... without the parent, even for inner classes.
|
isPrivate | public boolean isPrivate()(Code) | | |
isProtected | public boolean isProtected()(Code) | | |
isPublic | public boolean isPublic()(Code) | | |
isStatic | public boolean isStatic()(Code) | | |
terminate | public void terminate()(Code) | | Call this to help GC !
|
|
|