|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectJSHOP2.CompileTimeObject
JSHOP2.LogicalExpression
JSHOP2.LogicalExpressionDisjunction
public class LogicalExpressionDisjunction
Each disjunction at compile time is represented as an instance of this class.
Field Summary | |
---|---|
private int |
cnt
The number of objects instantiated from this class before this object was instantiated. |
private LogicalExpression[] |
le
An array of logical expressions the disjunction of which is represented by this object. |
Fields inherited from class JSHOP2.CompileTimeObject |
---|
endl |
Constructor Summary | |
---|---|
LogicalExpressionDisjunction(java.util.Vector<LogicalExpression> leIn)
To initialize this disjunction. |
Method Summary | |
---|---|
java.lang.String |
getInitCode()
This function produces Java code that implements the classes any object of which can be used at run time to represent the disjuncts of this disjunction, and the disjunction itself. |
protected void |
propagateVarCount(int varCount)
To propagate the variable count to all the logical expressions the disjunction of which this object represents. |
java.lang.String |
toCode()
This function produces the Java code to create an object of the class that was implemented to represent this disjunction at run time. |
Methods inherited from class JSHOP2.LogicalExpression |
---|
getClassCnt, getVarCount, setVarCount |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private int cnt
private LogicalExpression[] le
Constructor Detail |
---|
public LogicalExpressionDisjunction(java.util.Vector<LogicalExpression> leIn)
leIn
- a Vector
of logical expressions the disjunction of
which is represented by this object. Note that we use a
Vector
rather than an array since at compile time
we do not know how many disjuncts there are in this particular
disjunction.Method Detail |
---|
public java.lang.String getInitCode()
getInitCode
in class LogicalExpression
String
.protected void propagateVarCount(int varCount)
propagateVarCount
in class LogicalExpression
varCount
- the number of variables for this logical expression.public java.lang.String toCode()
toCode
in class CompileTimeObject
String
.
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |