summaryrefslogtreecommitdiff
path: root/src/main/java/io/devnulllabs/openjava/syntax/ExpressionListRule.java
blob: 0fd6351b8057f3f0912b5e89ee821e1cbe8f1efe (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
/*
 * ExpressionListRule.java
 *
 * comments here.
 *
 * @author   Michiaki Tatsubori
 * @version  %VERSION% %DATE%
 * @see      java.lang.Object
 *
 * COPYRIGHT 1998 by Michiaki Tatsubori, ALL RIGHTS RESERVED.
 */
package io.devnulllabs.openjava.syntax;


import io.devnulllabs.openjava.mop.Environment;
import io.devnulllabs.openjava.ptree.Expression;
import io.devnulllabs.openjava.ptree.ExpressionList;
import io.devnulllabs.openjava.ptree.ParseTree;


/**
 * The class <code>ExpressionListRule</code>
 * <p>
 * For example
 * <pre>
 * </pre>
 * <p>
 *
 * @author   Michiaki Tatsubori
 * @version  1.0
 * @since    $Id: ExpressionListRule.java,v 1.2 2003/02/19 02:54:32 tatsubori Exp $
 * @see java.lang.Object
 */
public final class ExpressionListRule extends SeparatedListRule
{
    private ExpressionList exprList = null;

    public ExpressionListRule( ExpressionRule exprRule, boolean allowsEmpty ) {
    super( exprRule, TokenID.COMMA, allowsEmpty );
    }

    public ExpressionListRule( ExpressionRule exprRule ) {
    this( exprRule, false );
    }

    public ExpressionListRule( Environment env, boolean allowsEmpty ) {
    this( new ExpressionRule( env ), allowsEmpty );
    }

    public ExpressionListRule( Environment env ) {
    this( env, false );
    }

    protected void initList() {
    exprList = new ExpressionList();
    }

    protected void addListElement( Object elem ) {
    exprList.add( (Expression) elem );
    }

    protected ParseTree getList() {
    return exprList;
    }

}