Schnittstelle IDOMField
- Alle Superschnittstellen:
Cloneable,IDOMMember,IDOMNode
Veraltet.
The JDOM was made obsolete by the addition in 2.0 of the more
powerful, fine-grained DOM/AST API found in the
org.eclipse.jdt.core.dom package.
Represents a field declaration. The corresponding
syntactic units are FieldDeclaration (JLS2 8.3) and ConstantDeclaration
(JLS2 9.3) restricted to a single VariableDeclarator clause.
A field has no children. The parent of a field is a type.
-
Feldübersicht
Von Schnittstelle geerbte Felder org.aspectj.org.eclipse.jdt.core.jdom.IDOMNode
COMPILATION_UNIT, FIELD, IMPORT, INITIALIZER, METHOD, PACKAGE, TYPE -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungVeraltet.Returns the initializer expression for this field.getName()Veraltet.TheIDOMFieldrefinement of thisIDOMNodemethod returns the name of this field.getType()Veraltet.Returns the type name of this field.voidsetInitializer(String initializer) Veraltet.Sets the initializer expression for this field.voidVeraltet.TheIDOMFieldrefinement of thisIDOMNodemethod sets the name of this field.voidVeraltet.Sets the type name of this field.Von Schnittstelle geerbte Methoden org.aspectj.org.eclipse.jdt.core.jdom.IDOMMember
getComment, getFlags, setComment, setFlagsVon Schnittstelle geerbte Methoden org.aspectj.org.eclipse.jdt.core.jdom.IDOMNode
addChild, canHaveChildren, clone, getCharacters, getChild, getChildren, getContents, getFirstChild, getJavaElement, getNextNode, getNodeType, getParent, getPreviousNode, insertSibling, isAllowableChild, isSignatureEqual, remove
-
Methodendetails
-
getInitializer
String getInitializer()Veraltet.Returns the initializer expression for this field. The syntax for an initializer corresponds to VariableInitializer (JLS2 8.3).Note: The expression does not include a "
=".- Gibt zurück:
- the initializer expression, or
nullif this field does not have an initializer
-
getName
String getName()Veraltet.TheIDOMFieldrefinement of thisIDOMNodemethod returns the name of this field. The syntax for the name of a field corresponds to VariableDeclaratorId (JLS2 8.3). -
getType
String getType()Veraltet.Returns the type name of this field. The syntax for a type name of a field corresponds to Type in Field Declaration (JLS2 8.3).- Gibt zurück:
- the type name
-
setInitializer
Veraltet.Sets the initializer expression for this field. The syntax for an initializer corresponds to VariableInitializer (JLS2 8.3).Note: The expression does not include a "
=".- Parameter:
initializer- the initializer expression, ornullindicating the field does not have an initializer
-
setName
Veraltet.TheIDOMFieldrefinement of thisIDOMNodemethod sets the name of this field. The syntax for the name of a field corresponds to VariableDeclaratorId (JLS2 8.3).- Angegeben von:
setNamein SchnittstelleIDOMNode- Parameter:
name- the given name- Löst aus:
IllegalArgumentException- ifnullis specified
-
setType
Veraltet.Sets the type name of this field. The syntax for a type name of a field corresponds to Type in Field Declaration (JLS2 8.3). Type names must be specified as they should appear in source code. For example:"String","int[]", or"java.io.File".- Parameter:
typeName- the type name- Löst aus:
IllegalArgumentException- ifnullis specified
-