Uses of Class
net.sourceforge.htmlunit.corejs.javascript.ast.Name

Packages that use Name
net.sourceforge.htmlunit.corejs.javascript.ast   
 

Uses of Name in net.sourceforge.htmlunit.corejs.javascript.ast
 

Fields in net.sourceforge.htmlunit.corejs.javascript.ast declared as Name
protected  Name XmlRef.namespace
           
 

Methods in net.sourceforge.htmlunit.corejs.javascript.ast that return Name
 Name BreakStatement.getBreakLabel()
          Returns the intended label of this break statement
 Name FunctionNode.getFunctionName()
          Returns function name
 Name ContinueStatement.getLabel()
          Returns the intended label of this continue statement
 Name XmlRef.getNamespace()
          Return the namespace.
 Name PropertyGet.getProperty()
          Returns the property being accessed.
 Name XmlPropRef.getPropName()
          Returns property name.
 Name CatchClause.getVarName()
          Returns catch variable node
 

Methods in net.sourceforge.htmlunit.corejs.javascript.ast with parameters of type Name
 void BreakStatement.setBreakLabel(Name label)
          Sets the intended label of this break statement, e.g.
 void FunctionNode.setFunctionName(Name name)
          Sets function name, and sets its parent to this node.
 void ContinueStatement.setLabel(Name label)
          Sets the intended label of this continue statement.
 void XmlRef.setNamespace(Name namespace)
          Sets namespace, and sets its parent to this node.
 void PropertyGet.setProperty(Name property)
          Sets the property being accessed, and sets its parent to this node.
 void XmlPropRef.setPropName(Name propName)
          Sets property name, and sets its parent to this node.
 void CatchClause.setVarName(Name varName)
          Sets catch variable node, and sets its parent to this node.
 

Constructors in net.sourceforge.htmlunit.corejs.javascript.ast with parameters of type Name
ContinueStatement(int pos, int len, Name label)
           
ContinueStatement(int pos, Name label)
           
ContinueStatement(Name label)
           
FunctionNode(int pos, Name name)
           
PropertyGet(AstNode target, Name property)
          Constructor.
PropertyGet(AstNode target, Name property, int dotPosition)
           
PropertyGet(int pos, int len, AstNode target, Name property)