Uses of Class
org.tromer.jie.syntaxtree.PrimaryPrefix

Packages that use PrimaryPrefix
org.tromer.jie.parser Java parser, generated by JavaCC from JTB-generated grammar. 
org.tromer.jie.syntaxtree Java abstract syntax tree nodes, generated by JavaCC from JTB-generated grammar. 
org.tromer.jie.visitor Basic visitor classes for Java abstract syntax trees, generated by JTB and by JIE's makeVisitors.pl script. 
 

Uses of PrimaryPrefix in org.tromer.jie.parser
 

Methods in org.tromer.jie.parser that return PrimaryPrefix
 PrimaryPrefix JavaParser.PrimaryPrefix()
           
 

Uses of PrimaryPrefix in org.tromer.jie.syntaxtree
 

Fields in org.tromer.jie.syntaxtree declared as PrimaryPrefix
 PrimaryPrefix PrimaryExpression.primaryPrefix
           
 

Constructors in org.tromer.jie.syntaxtree with parameters of type PrimaryPrefix
PrimaryExpression.PrimaryExpression(PrimaryPrefix n0, NodeListOptional n1)
           
 

Uses of PrimaryPrefix in org.tromer.jie.visitor
 

Methods in org.tromer.jie.visitor with parameters of type PrimaryPrefix
 java.lang.Object NullObjectVisitor.visit(PrimaryPrefix n, java.lang.Object argu)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()
 java.lang.Object CallingDepthFirst.visit(PrimaryPrefix n, java.lang.Object argu)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()
 void PrePostDepthFirst.visit(PrimaryPrefix n)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()
 java.lang.Object ObjectVisitor.visit(PrimaryPrefix n, java.lang.Object argu)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()
 void Visitor.visit(PrimaryPrefix n)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()
 java.lang.Object ObjectDepthFirst.visit(PrimaryPrefix n, java.lang.Object argu)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()
 void DepthFirstVisitor.visit(PrimaryPrefix n)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()
 void TreeFormatter.visit(PrimaryPrefix n)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()
 java.lang.Object GreedyDepthFirst.visit(PrimaryPrefix n, java.lang.Object argu)
           nodeChoice -> Literal() | "this" | "super" "." <IDENTIFIER> | "(" Expression() ")" | AllocationExpression() | ResultType() "." "class" | Name()