KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > AmbPrefix


1 package polyglot.ast;
2
3 /**
4  * An <code>AmbPrefix</code> is an ambiguous AST node composed of dot-separated
5  * list of identifiers that must resolve to a prefix.
6  */

7 public interface AmbPrefix extends Prefix, Ambiguous
8 {
9     /**
10      * Prefix of the prefix.
11      */

12     Prefix prefix();
13
14     /**
15      * Ambiguous name.
16      */

17     String JavaDoc name();
18 }
19
Popular Tags