Uses of Class
modhelxs.mocs.tfsm.parser.Expression

Packages that use Expression
modhelxs.mocs.tfsm.parser   
 

Uses of Expression in modhelxs.mocs.tfsm.parser
 

Subclasses of Expression in modhelxs.mocs.tfsm.parser
 class BinaryOperator
          Represents a binary boolean operator.
 class OperatorAnd
          Represents the AND operator in boolean expressions.
 class OperatorDelay
          Represents the NOT boolean operator.
 class OperatorNot
          Represents the NOT boolean operator.
 class OperatorOr
          Represents the OR operator in boolean expressions.
 class Variable
          Represents a variable in a boolean expression.
 

Fields in modhelxs.mocs.tfsm.parser declared as Expression
private  Expression OperatorNot.e
           
private  Expression OperatorDelay.e
           
 

Fields in modhelxs.mocs.tfsm.parser with type parameters of type Expression
protected  java.util.List<Expression> BinaryOperator.args
           
 

Method parameters in modhelxs.mocs.tfsm.parser with type arguments of type Expression
private static boolean Expression.pushOperator(java.util.Stack<Expression> output, char op, java.util.List<java.lang.String> listOfEvents)
           
private static void Expression.pushVariable(java.util.Stack<Expression> output, java.lang.String var)
           
 

Constructors in modhelxs.mocs.tfsm.parser with parameters of type Expression
OperatorAnd(Expression a, Expression b)
           
OperatorDelay(Expression e)
           
OperatorNot(Expression e)
           
OperatorOr(Expression a, Expression b)
           
 

Constructor parameters in modhelxs.mocs.tfsm.parser with type arguments of type Expression
BinaryOperator(java.util.List<Expression> args)
           
OperatorAnd(java.util.List<Expression> args)
           
OperatorOr(java.util.List<Expression> args)