1 package net.sourceforge.phpdt.internal.compiler.ast;
6 * @author Matthieu Casanova
8 public abstract class Statement extends AstNode {
11 * Create a node giving starting and ending offset.
12 * @param sourceStart starting offset
13 * @param sourceEnd ending offset
15 public Statement(final int sourceStart,
16 final int sourceEnd) {
17 super(sourceStart, sourceEnd);
21 * Tell if the block is empty.
22 * @return a statement is not empty by default
24 public boolean isEmptyBlock() {