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

Packages that use LockTestOp
edu.ksu.cis.projects.bogor.ast Provides for Bogor input language AST. 
edu.ksu.cis.projects.bogor.module Provide a generic framework for dataflow analysis on BIR transition systems. 
edu.ksu.cis.projects.bogor.parser Provides parser for Bogor input language. 
 

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

Methods in edu.ksu.cis.projects.bogor.ast that return LockTestOp
 LockTestOp LockTestExp.getLockTestOp()
          Gets the lock test operator.
static LockTestOp LockTestOp.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LockTestOp[] LockTestOp.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in edu.ksu.cis.projects.bogor.ast with parameters of type LockTestOp
 void LockTestExp.setLockTestOp(LockTestOp newLockTestOp)
          Sets the lock test operator.
 

Constructors in edu.ksu.cis.projects.bogor.ast with parameters of type LockTestOp
LockTestExp(LockTestOp lockTestOp, Exp exp)
          Default constructor.
 

Uses of LockTestOp in edu.ksu.cis.projects.bogor.module
 

Methods in edu.ksu.cis.projects.bogor.module with parameters of type LockTestOp
 IValue DefaultExpEvaluator.evaluateLockTestOp(int threadId, LockTestOp locktestop, IValue value)
           
 IValue IExpEvaluator.evaluateLockTestOp(int threadId, LockTestOp locktestop, IValue value)
           
 

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

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