Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse JDT
Release 3.5

org.eclipse.jdt.core.jdom
Interface IDOMField

All Superinterfaces:
Cloneable, IDOMMember, IDOMNode

Deprecated. 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.

public interface IDOMField
extends IDOMMember

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.

Restriction:
This interface is not intended to be implemented by clients.

Field Summary
 
Fields inherited from interface org.eclipse.jdt.core.jdom. IDOMNode
COMPILATION_UNIT, FIELD, IMPORT, INITIALIZER, METHOD, PACKAGE, TYPE
 
Method Summary
  String getInitializer ()
          Deprecated. Returns the initializer expression for this field.
  String getName ()
          Deprecated. The IDOMField refinement of this IDOMNode method returns the name of this field.
  String getType ()
          Deprecated. Returns the type name of this field.
 void setInitializer ( String initializer)
          Deprecated. Sets the initializer expression for this field.
 void setName ( String name)
          Deprecated. The IDOMField refinement of this IDOMNode method sets the name of this field.
 void setType ( String typeName)
          Deprecated. Sets the type name of this field.
 
Methods inherited from interface org.eclipse.jdt.core.jdom. IDOMMember
getComment, getFlags, setComment, setFlags
 
Methods inherited from interface org.eclipse.jdt.core.jdom. IDOMNode
addChild, canHaveChildren, clone, getCharacters, getChild, getChildren, getContents, getFirstChild, getJavaElement, getNextNode, getNodeType, getParent, getPreviousNode, insertSibling, isAllowableChild, isSignatureEqual, remove
 

Method Detail

getInitializer


String getInitializer()
Deprecated. 
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 "=".

Returns:
the initializer expression, or null if this field does not have an initializer

getName


String getName()
Deprecated. 
The IDOMField refinement of this IDOMNode method returns the name of this field. The syntax for the name of a field corresponds to VariableDeclaratorId (JLS2 8.3).

Specified by:
getName in interface IDOMNode
Returns:
the name of this field

getType


String getType()
Deprecated. 
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).

Returns:
the type name

setInitializer

void setInitializer(
String initializer)
Deprecated. 
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 "=".

Parameters:
initializer - the initializer expression, or null indicating the field does not have an initializer

setName

void setName(
String name)
             throws 
IllegalArgumentException
Deprecated. 
The IDOMField refinement of this IDOMNode method sets the name of this field. The syntax for the name of a field corresponds to VariableDeclaratorId (JLS2 8.3).

Specified by:
setName in interface IDOMNode
Parameters:
name - the given name
Throws:
IllegalArgumentException - if null is specified

setType

void setType(
String typeName)
             throws 
IllegalArgumentException
Deprecated. 
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".

Parameters:
typeName - the type name
Throws:
IllegalArgumentException - if null is specified

Eclipse JDT
Release 3.5

Copyright (c) IBM Corp. and others 2000, 2008. All Rights Reserved.

 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire