KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > coffer > ast > CanonicalKeySetNode


1 package polyglot.ext.coffer.ast;
2
3 import polyglot.ast.*;
4 import polyglot.types.*;
5 import polyglot.visit.*;
6 import polyglot.ext.jl.ast.*;
7 import polyglot.ext.coffer.types.*;
8
9 /**
10  * A canonical key set AST node. This is just an AST node
11  * veneer around a <code>KeySet</code> type object.
12  */

13 public interface CanonicalKeySetNode extends KeySetNode
14 {
15     public CanonicalKeySetNode keys(KeySet keys);
16 }
17
Popular Tags