KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > AmbReceiver


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

7 public interface AmbReceiver extends Ambiguous, Receiver
8 {
9     /**
10      * Prefix of the receiver.
11      */

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

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