summaryrefslogtreecommitdiff
path: root/src/main/java/io/devnulllabs/openjava/ptree/WhileStatement.java
blob: 81c4eb3f30b4887cb379559ab1f18c5f4a4514b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**
 * The WhileStatement class presents while statement node
 * of parse tree
 *
 * Jun 20, 1997 by mich
 * Sep 29, 1997 by mich
 * Oct 11, 1997 by mich
 *
 * @see io.devnulllabs.openjava.ptree.ParseTree
 * @version 1.0 last updated:  Oct 11, 1997
 * @author  Michiaki Tatsubori
 */
package io.devnulllabs.openjava.ptree;

import io.devnulllabs.openjava.ptree.util.ParseTreeVisitor;

/**
 * The WhileStatement class presents while statement node
 * of parse tree
 *
 * @see io.devnulllabs.openjava.ptree.ParseTree
 * @see io.devnulllabs.openjava.ptree.NonLeaf
 * @see io.devnulllabs.openjava.ptree.Statement
 */
public class WhileStatement extends NonLeaf implements Statement, ParseTree {

    /**
     * Allocates a new object.
     *
     * @param  expr  the expression of the condition of this while
     *               statement.
     * @param  stmts  the statement list of the body oof this while
     *                statement.
     */
    public WhileStatement(Expression expr, StatementList stmts) {
        super();
        set((ParseTree) expr, (ParseTree) stmts);
    }

    WhileStatement() {
        super();
    }

    /**
     * Gets the condtion of this while statement.
     *
     * @return  the expression of the condtion.
     */
    public Expression getExpression() {
        return (Expression) elementAt(0);
    }

    /**
     * Sets the condtion of this while statement.
     *
     * @param  expr  the expression of the condtion to set.
     */
    public void setExpression(Expression expr) {
        setElementAt(expr, 0);
    }

    /**
     * Gets the body of this while statement.
     *
     * @return  the statement list of the body.
     */
    public StatementList getStatements() {
        return (StatementList) elementAt(1);
    }

    /**
     * Sets the body of this while statement.
     *
     * @param  stmts  the statement list of the body to set.
     */
    public void setStatements(StatementList stmts) {
        setElementAt(stmts, 1);
    }

    public void accept(ParseTreeVisitor v) throws ParseTreeException {
        v.visit(this);
    }

}