1 package polyglot.ast; 2 3 import polyglot.util.*; 4 import polyglot.types.*; 5 6 /** 7 * A local class declaration statement. The node is just a wrapper around 8 * a class declaration. 9 */ 10 public interface LocalClassDecl extends CompoundStmt 11 { 12 /** The class declaration. */ 13 ClassDecl decl(); 14 } 15