First try for AST structure. A lot of things to change
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / AbstractPHPComment.java
1 package net.sourceforge.phpdt.internal.compiler.ast;
2
3 /**
4  * Here are php comment.
5  * @author Matthieu Casanova
6  */
7 public abstract class AbstractPHPComment extends AstNode {
8
9   /**
10    * Create a comment giving starting and ending offset
11    * @param sourceStart starting offset
12    * @param sourceEnd ending offset
13    */
14   public AbstractPHPComment(int sourceStart, int sourceEnd) {
15     super(sourceStart, sourceEnd);
16   }
17 }