KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ext > jl > ast > Stmt_c


1 package polyglot.ext.jl.ast;
2
3 import polyglot.ast.*;
4 import polyglot.visit.*;
5 import polyglot.util.*;
6
7 /**
8  * A <code>Stmt</code> represents any Java statement. All statements must
9  * be subtypes of Stmt.
10  */

11 public abstract class Stmt_c extends Term_c implements Stmt
12 {
13     public Stmt_c(Position pos) {
14     super(pos);
15     }
16 }
17
Popular Tags