com.jeffpalm.javaparser
Class ASTActualTypeArgument

java.lang.Object
  extended by com.jeffpalm.javaparser.SimpleNode
      extended by com.jeffpalm.javaparser.ASTActualTypeArgument
All Implemented Interfaces:
Node

public class ASTActualTypeArgument
extends SimpleNode

Stores an Actual Type Parameter (new to JDK 1.5). Created by the parser.

Since:
jRefactory 2.9.0, created October 16, 2003
Author:
Mike Atkinson

Field Summary
 
Fields inherited from class com.jeffpalm.javaparser.SimpleNode
children, id, parent, parser, specials
 
Constructor Summary
ASTActualTypeArgument(int identifier)
          Constructor for the ASTActualTypeArgument node.
ASTActualTypeArgument(JavaParser parser, int identifier)
          Constructor for the ASTActualTypeArgument node.
 
Method Summary
 boolean hasExtends()
          Does the actual type argument take the form <? extends ReferenceType>?
 boolean hasSuper()
          Does the actual type argument take the form <? super ReferenceType>?
 boolean hasWildcard()
          Does the actual type argument take the form <?,> or <? extends ReferenceType> or <? super ReferenceType>? If not it is a ReferenceType.
 java.lang.Object jjtAccept(JavaParserVisitor visitor, java.lang.Object data)
          Accept the visitor.
 void setExtends()
          Sets the extends attribute of the ASTActualTypeArgument node.
 void setSuper()
          Sets the super attribute of the ASTActualTypeArgument node.
 void setWildcard()
          Sets the wildcard attribute of the ASTActualTypeArgument node.
 
Methods inherited from class com.jeffpalm.javaparser.SimpleNode
addSpecial, childrenAccept, dump, dumpString, findChildrenOfType, findChildrenOfType, findChildrenOfType, getBeginColumn, getBeginLine, getEndColumn, getEndLine, getImage, getName, getScope, getSpecial, hasAnyChildren, init, isRequired, jjtAddChild, jjtAddFirstChild, jjtClose, jjtDeleteChild, jjtGetChild, jjtGetFirstChild, jjtGetID, jjtGetNumChildren, jjtGetParent, jjtInsertChild, jjtOpen, jjtSetParent, printModifiers, removeSpecial, setLineAndColumnInfo, setScope, 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

ASTActualTypeArgument

public ASTActualTypeArgument(int identifier)
Constructor for the ASTActualTypeArgument node.

Parameters:
identifier - The id of this node (JJTACTUALTYPEARGUMENT).

ASTActualTypeArgument

public ASTActualTypeArgument(JavaParser parser,
                             int identifier)
Constructor for the ASTActualTypeArgument node.

Parameters:
parser - The JavaParser that created this ASTActualTypeArgument node.
identifier - The id of this node (JJTACTUALTYPEARGUMENT)
Method Detail

setWildcard

public void setWildcard()
Sets the wildcard attribute of the ASTActualTypeArgument node.


setSuper

public void setSuper()
Sets the super attribute of the ASTActualTypeArgument node.


setExtends

public void setExtends()
Sets the extends attribute of the ASTActualTypeArgument node.


hasWildcard

public boolean hasWildcard()
Does the actual type argument take the form <?,> or <? extends ReferenceType> or <? super ReferenceType>? If not it is a ReferenceType.

Returns:
true if the type argument is a wildcard ("?").

hasSuper

public boolean hasSuper()
Does the actual type argument take the form <? super ReferenceType>?

Returns:
true if the type argument has a super part.

hasExtends

public boolean hasExtends()
Does the actual type argument take the form <? extends ReferenceType>?

Returns:
true if the type argument has an extends part.

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
Parameters:
visitor - An implementation of JavaParserVisitor that processes the ASTActualTypeArgument node.
data - Some data being passed between the visitor methods.
Returns:
Usually the data parameter (possibly modified).