First try for AST structure. A lot of things to change
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractCase.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 /**
4  * @author Matthieu Casanova
5  */
6 public abstract class AbstractCase extends Statement {
7   public Statement[] statements;
8
9   public AbstractCase(Statement[] statements, int sourceStart, int sourceEnd) {
10     super(sourceStart, sourceEnd);
11     this.statements = statements;
12   }
13 }