c16f91fc26a7718f085437cf01332cbd8b9bf04b
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Statement.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 /**
4  * A Statement.
5  * @author Matthieu Casanova
6  */
7 public class Statement extends AstNode {
8
9   public Statement() {
10   }
11
12   public boolean isEmptyBlock() {
13     return false;
14   }
15 }