summaryrefslogtreecommitdiff
path: root/src/main/java/io/devnulllabs/openjava/syntax/TypeNameRule.java
blob: fd73be9e96c49ef385f0ad48fd24ee0a8b66f7c7 (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
/*
 * TypeNameRule.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.ParseTree;
import io.devnulllabs.openjava.ptree.TypeName;

/**
 * The class <code>TypeNameRule</code>
 * <p>
 * For example
 * <pre>
 * </pre>
 * <p>
 *
 * @author   Michiaki Tatsubori
 * @version  1.0
 * @since    $Id: TypeNameRule.java,v 1.2 2003/02/19 02:54:32 tatsubori Exp $
 * @see java.lang.Object
 */
public class TypeNameRule extends AbstractSyntaxRule {
    public final ParseTree consume(TokenSource token_src)
        throws SyntaxException {
        return consumeTypeName(token_src);
    }

    public TypeName consumeTypeName(TokenSource token_src)
        throws SyntaxException {
        TypeName result = JavaSyntaxRules.consumeTypeName(token_src);
        if (result == null)
            throw JavaSyntaxRules.getLastException();
        Environment env = token_src.getEnvironment();
        result.setName(env.toQualifiedName(result.getName()));
        return result;
    }

}