Uses of Class
edu.ksu.cis.projects.bogor.ast.PrintArg

Packages that use PrintArg
edu.ksu.cis.projects.bogor.ast Provides for Bogor input language AST. 
edu.ksu.cis.projects.bogor.parser Provides parser for Bogor input language. 
 

Uses of PrintArg in edu.ksu.cis.projects.bogor.ast
 

Subclasses of PrintArg in edu.ksu.cis.projects.bogor.ast
 class IdPrintArg
          Id print argument AST.
 class StringPrintArg
          String print argument AST.
 

Methods in edu.ksu.cis.projects.bogor.ast that return PrintArg
abstract  PrintArg PrintArg.clone()
          Clones this object (deep clone); including location info.
 PrintArg PrintAction.getPrintArg(int index)
          Gets a print argument at a specified index.
 

Method parameters in edu.ksu.cis.projects.bogor.ast with type arguments of type PrintArg
 void PrintAction.setPrintArgs(List<? extends PrintArg> newPrintArgs)
          Sets the print arguments.
 

Constructor parameters in edu.ksu.cis.projects.bogor.ast with type arguments of type PrintArg
PrintAction(List<? extends PrintArg> printArgs)
          Default constructor.
 

Uses of PrintArg in edu.ksu.cis.projects.bogor.parser
 

Methods in edu.ksu.cis.projects.bogor.parser that return PrintArg
 PrintArg BogorParser.PrintArg()