Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.2.0)

E17493-03


javax.ide.model.java.source.tree
Interface FieldDeclT

All Superinterfaces:
HasModifiersT, MemberT, Tree, VariableDeclT

public interface FieldDeclT
extends MemberT, VariableDeclT

A field (or enum constant) declaration.


Field Summary
static FieldDeclT[] EMPTY_ARRAY
           

 

Method Summary
 boolean isAbstract()
          True if this is abstract.
 boolean isPrivate()
          True if this is private.
 boolean isProtected()
          True if this is protected.
 boolean isPublic()
          True if this is public.
 boolean isStatic()
          True if this is static.

 

Methods inherited from interface javax.ide.model.java.source.tree.MemberT
getBlock, getDeclaringClass, getDocComment, setBlock, setDocComment

 

Methods inherited from interface javax.ide.model.java.source.tree.VariableDeclT
getType, getVariables, setType

 

Methods inherited from interface javax.ide.model.java.source.tree.HasModifiersT
addModifiers, getAnnotations, getModifiers, isFinal, isStrictfp, removeModifiers, setModifiers

 

Field Detail

EMPTY_ARRAY

static final FieldDeclT[] EMPTY_ARRAY

Method Detail

isPublic

boolean isPublic()
True if this is public.
Specified by:
isPublic in interface HasModifiersT
Returns:
True if element is modified with "final".

isProtected

boolean isProtected()
True if this is protected.
Specified by:
isProtected in interface HasModifiersT
Returns:
True if element is modified with "protected".

isPrivate

boolean isPrivate()
True if this is private.
Specified by:
isPrivate in interface HasModifiersT
Returns:
True if element is modified with "private".

isStatic

boolean isStatic()
True if this is static.
Specified by:
isStatic in interface HasModifiersT
Returns:
True if element is modified with "static".

isAbstract

boolean isAbstract()
True if this is abstract.
Specified by:
isAbstract in interface HasModifiersT
Returns:
True if element is modified with "abstract".

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.2.0)

E17493-03


Copyright © 1997, 2012, Oracle. All rights reserved.