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

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

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

Methods in edu.ksu.cis.projects.bogor.ast that return InitialValue
 InitialValue InitialValue.clone()
          Clones this object (deep clone); including location info.
 InitialValue Global.getOptionalValue()
          Gets the value.
 InitialValue Local.getOptionalValue()
          Gets the value.
 

Methods in edu.ksu.cis.projects.bogor.ast with parameters of type InitialValue
 void Global.setValue(InitialValue newValue)
          Sets the value.
 void Local.setValue(InitialValue newValue)
          Sets the value.
protected  void ASTVisitor.visitInitialValue(InitialValue node)
           
 

Constructors in edu.ksu.cis.projects.bogor.ast with parameters of type InitialValue
Global(TypedId typedId, InitialValue value, boolean isTransient)
          Constructor with literal or id.
Local(TypedId typedId, InitialValue value, boolean isTransient)
          Constructor with literal or id.