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
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractPHPComment.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/AbstractPHPComment.java
new file mode 100644 (file)
index 0000000..0d3f2f0
--- /dev/null
@@ -0,0 +1,17 @@
+package net.sourceforge.phpdt.internal.compiler.ast;
+
+/**
+ * Here are php comment.
+ * @author Matthieu Casanova
+ */
+public abstract class AbstractPHPComment extends AstNode {
+
+  /**
+   * Create a comment giving starting and ending offset
+   * @param sourceStart starting offset
+   * @param sourceEnd ending offset
+   */
+  public AbstractPHPComment(int sourceStart, int sourceEnd) {
+    super(sourceStart, sourceEnd);
+  }
+}