*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / ElseIf.java
index d2fac29..a6aff20 100644 (file)
@@ -1,12 +1,15 @@
 package net.sourceforge.phpdt.internal.compiler.ast;
 
 /**
+ * An elseif statement.
  * @author Matthieu Casanova
  */
 public class ElseIf extends Statement {
 
+  /** The condition. */
   public Expression condition;
 
+  /** The statements. */
   public Statement[] statements;
 
   public ElseIf(Expression condition, Statement[] statements, int sourceStart, int sourceEnd) {