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

Packages that use LockOp
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.module.backtrack Provides types and factories for "undo" operations. 
edu.ksu.cis.projects.bogor.module.value Provides for Bogor values. 
edu.ksu.cis.projects.bogor.parser Provides parser for Bogor input language. 
 

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

Methods in edu.ksu.cis.projects.bogor.ast that return LockOp
 LockOp LockAction.getLockOp()
          Gets the lock operator.
static LockOp LockOp.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LockOp[] LockOp.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 LockOp
 void LockAction.setLockOp(LockOp newLockOp)
          Sets the lock operator.
 

Constructors in edu.ksu.cis.projects.bogor.ast with parameters of type LockOp
LockAction(LockOp lockOp, Exp exp)
          Default constructor.
 

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

Methods in edu.ksu.cis.projects.bogor.module with parameters of type LockOp
 ILockBacktrackingInfo IBacktrackingInfoFactory.createLockBacktrackingInfo(int stateId, int threadId, Action action, LockOp lockOp, ILockValue lockValue, int owner, int lockCounter, int[] waiting, int[] notification, int oldLockCount, int notifiedThreadId, ISchedulingStrategyInfo ssi)
           
 

Uses of LockOp in edu.ksu.cis.projects.bogor.module.backtrack
 

Methods in edu.ksu.cis.projects.bogor.module.backtrack that return LockOp
 LockOp ILockBacktrackingInfo.getLockOp()
           
 

Methods in edu.ksu.cis.projects.bogor.module.backtrack with parameters of type LockOp
 ILockBacktrackingInfo DefaultBacktrackingInfoFactory.createLockBacktrackingInfo(int stateId, int threadId, Action action, LockOp lockOp, ILockValue lockValue, int owner, int lockCounter, int[] waiting, int[] notification, int oldLockCount, int notifiedThreadId, ISchedulingStrategyInfo ssi)
           
 

Uses of LockOp in edu.ksu.cis.projects.bogor.module.value
 

Methods in edu.ksu.cis.projects.bogor.module.value with parameters of type LockOp
 void DefaultLockValue.undoOp(LockOp lockOp, int owner, int lockCounter, int[] notification, int[] waiting, int notifiedThreadId)
           
 void ILockValue.undoOp(LockOp lockOp, int owner, int lockCounter, int[] notification, int[] waiting, int notifiedThreadId)
          Undo a lock op.
 

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

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