|
|||||||||
| Home >> All >> com >> tripi >> [ asp overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
com.tripi.asp
Class DoNode

java.lang.Objectcom.tripi.asp.DoNode
- All Implemented Interfaces:
- Node
- public class DoNode
- extends java.lang.Object
- implements Node
- extends java.lang.Object
Implements the looping constructs, DO .. UNTIL, WHILE ... DO, WHILE .. WEND, etc...
- Version:
- 0.9
| Field Summary | |
(package private) boolean |
checkAfter
Check expression after loop? |
(package private) BlockNode |
code
Block to execute |
(package private) boolean |
doUntil
DO .. |
(package private) Node |
expr
Expression to test |
| Constructor Summary | |
DoNode(Node expr,
BlockNode code,
boolean checkAfter,
boolean doUntil)
Constructor. |
|
| Method Summary | |
void |
dump()
Dumps this node. |
java.lang.Object |
execute(AspContext context)
Executes this node |
void |
prepare(AspContext context)
Prepares this node for executtion. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
expr
Node expr
- Expression to test
code
BlockNode code
- Block to execute
checkAfter
boolean checkAfter
- Check expression after loop?
doUntil
boolean doUntil
- DO .. UNTIL, or DO .. WHILE?
| Constructor Detail |
DoNode
public DoNode(Node expr, BlockNode code, boolean checkAfter, boolean doUntil)
- Constructor.
| Method Detail |
dump
public void dump()
throws AspException
prepare
public void prepare(AspContext context) throws AspException
execute
public java.lang.Object execute(AspContext context) throws AspException
|
|||||||||
| Home >> All >> com >> tripi >> [ asp overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
com.tripi.asp.DoNode