net.sourceforge.pmd.ast
Class ASTFieldDeclaration

java.lang.Object
  extended bynet.sourceforge.pmd.ast.SimpleNode
      extended bynet.sourceforge.pmd.ast.AccessNode
          extended bynet.sourceforge.pmd.ast.ASTFieldDeclaration
All Implemented Interfaces:
Dimensionable, Node

public class ASTFieldDeclaration
extends AccessNode
implements Dimensionable


Field Summary
 
Fields inherited from class net.sourceforge.pmd.ast.AccessNode
ABSTRACT, FINAL, NATIVE, PRIVATE, PROTECTED, PUBLIC, STATIC, STRICTFP, SYNCHRONIZED, TRANSIENT, VOLATILE
 
Fields inherited from class net.sourceforge.pmd.ast.SimpleNode
children, id, parent, parser
 
Constructor Summary
ASTFieldDeclaration(int id)
           
ASTFieldDeclaration(JavaParser p, int id)
           
 
Method Summary
 void dump(java.lang.String prefix)
           
 int getArrayDepth()
           
 java.lang.String getVariableName()
          Gets the variable name of this field.
 boolean isArray()
           
 java.lang.Object jjtAccept(JavaParserVisitor visitor, java.lang.Object data)
          Accept the visitor.
 
Methods inherited from class net.sourceforge.pmd.ast.AccessNode
collectDumpedModifiers, isAbstract, isFinal, isNative, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, isStrictfp, isSynchronized, isTransient, isVolatile, removeModifier, setAbstract, setFinal, setModifiers, setNative, setPrivate, setProtected, setPublic, setStatic, setStrictfp, setSynchronized, setTransient, setVolatile
 
Methods inherited from class net.sourceforge.pmd.ast.SimpleNode
appendElement, asXml, childrenAccept, containsChildOfType, discardIfNecessary, dumpChildren, findChildNodesWithXPath, findChildrenOfType, findChildrenOfType, findChildrenOfType, getBeginColumn, getBeginLine, getDataFlowNode, getEndColumn, getEndLine, getFirstChildOfType, getFirstParentOfType, getImage, getParentsOfType, getScope, jjtAddChild, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, jjtReplaceChild, jjtSetParent, setDataFlowNode, setDiscardable, setImage, setScope, setUnDiscardable, testingOnly__setBeginColumn, testingOnly__setBeginLine, toString, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ASTFieldDeclaration

public ASTFieldDeclaration(int id)

ASTFieldDeclaration

public ASTFieldDeclaration(JavaParser p,
                           int id)
Method Detail

jjtAccept

public java.lang.Object jjtAccept(JavaParserVisitor visitor,
                                  java.lang.Object data)
Accept the visitor. *

Specified by:
jjtAccept in interface Node
Overrides:
jjtAccept in class SimpleNode

isArray

public boolean isArray()
Specified by:
isArray in interface Dimensionable

getArrayDepth

public int getArrayDepth()
Specified by:
getArrayDepth in interface Dimensionable

dump

public void dump(java.lang.String prefix)
Overrides:
dump in class SimpleNode

getVariableName

public java.lang.String getVariableName()
Gets the variable name of this field. This method searches the first VariableDeclartorId node and returns it's image or null if the child node is not found.

Returns:
a String representing the name of the variable


Copyright © 2002-2005 InfoEther. All Rights Reserved.