KickJava   Java API By Example, From Geeks To Geeks.

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


1 package polyglot.ext.coffer.ast;
2
3 import polyglot.ast.*;
4 import java.util.*;
5
6 /**
7  * A Coffer class declaration.
8  * <code>ClassDecl</code> is extended with a possibly-null key name.
9  */

10 public interface CofferClassDecl extends ClassDecl {
11     KeyNode key();
12     CofferClassDecl key(KeyNode key);
13 }
14
Popular Tags