| |
|
| org.netbeans.editor.ext.java.JCClass
JCClass | public interface JCClass extends Comparable(Code) | | Java completion class
author: Miloslav Metelka version: 1.00 |
getConstructors | public JCConstructor[] getConstructors()(Code) | | Get constructors that this class contains
|
getFields | public JCField[] getFields()(Code) | | Get fields that this class contains
|
getFullName | public String getFullName()(Code) | | Get full name consisting of class name and package name
|
getInterfaces | public JCClass[] getInterfaces()(Code) | | Get interfaces this class implements or the interfaces this interface
extends.
|
getMethods | public JCMethod[] getMethods()(Code) | | Get methods that this class contains
|
getModifiers | public int getModifiers()(Code) | | Get modifiers for this class
|
getName | public String getName()(Code) | | Get name of the class without package specification
|
getPackageName | public String getPackageName()(Code) | | Get package where the class is placed
|
getSuperclass | public JCClass getSuperclass()(Code) | | Get superclass of this class
|
getTagOffset | public int getTagOffset()(Code) | | Get offset in source files
|
isInterface | public boolean isInterface()(Code) | | Is this class an interface?
|
|
|
|