package bluej.parser.nodes;top, use, map, class PkgStmtNode
| A node for representing package statements at the beginning of a | compilation unit. | | @author Davin McCall | public class PkgStmtNode extends JavaParentNode{ public PkgStmtNode(JavaParentNode parent) { super(parent); } @Override protected boolean marksOwnEnd() { return true; } }