KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > Stmt


1 package polyglot.ast;
2
3 /**
4  * A <code>Stmt</code> represents any Java statement. All statements must
5  * be subtypes of Stmt.
6  */

7 public interface Stmt extends Term
8 {
9 }
10
Popular Tags