summaryrefslogtreecommitdiff
path: root/src/main/java/io/devnulllabs/openjava/syntax/SelectionRule.java
blob: 763560d035c581f9683b170b933307aad88e2e3b (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
/*
 * SelectionRule.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.ptree.ParseTree;

/**
 * The class <code>SelectionRule</code> represents selective syntax
 * rule.
 * <p>
 * Suppose there're several syntax rules; A, B, C.  This class
 * can represents the syntax ( A | B | C ).
 * If both A and B are adaptable to token source, A is choosed since
 * A is specified at lefter part than B's part.
 *
 * @author   Michiaki Tatsubori
 * @version  1.0
 * @since    $Id: SelectionRule.java,v 1.2 2003/02/19 02:54:31 tatsubori Exp $
 * @see java.lang.Object
 */
public class SelectionRule extends AbstractSyntaxRule {
    protected SyntaxRule[] elementRules;

    /**
     * Allocates a new rule representing a selection of given rules.
     *
     * @param elementRules  an array of rules
     */
    public SelectionRule(SyntaxRule[] elementRules) {
        this.elementRules = elementRules;
    }

    public SelectionRule(SyntaxRule e1, SyntaxRule e2) {
        this(new SyntaxRule[] { e1, e2 });
    }

    public SelectionRule(SyntaxRule e1, SyntaxRule e2, SyntaxRule e3) {
        this(new SyntaxRule[] { e1, e2, e3 });
    }

    public ParseTree consume(TokenSource token_src) throws SyntaxException {
        for (int i = 0; i < elementRules.length; ++i) {
            if (elementRules[i].lookahead(token_src)) {
                ParseTree result = elementRules[i].consume(token_src);
                return result;
            }
        }
        /***** to become specifed error report */
        throw new SyntaxException("neither of selection");
    }

}