improved PHP parser
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / jdom / DOMInitializer.java
index 314ee35..d52d796 100644 (file)
@@ -11,7 +11,6 @@
 package net.sourceforge.phpdt.internal.core.jdom;
 
 import net.sourceforge.phpdt.core.IJavaElement;
-import net.sourceforge.phpdt.core.IType;
 import net.sourceforge.phpdt.core.jdom.IDOMInitializer;
 import net.sourceforge.phpdt.core.jdom.IDOMNode;
 import net.sourceforge.phpdt.internal.compiler.util.Util;
@@ -61,7 +60,7 @@ DOMInitializer() {
  *             character following the last comment. If no comments are present,
  *             this array contains two -1's.
  * @param flags - an integer representing the modifiers for this member. The
- *             integer can be analyzed with org.eclipse.jdt.core.Flags
+ *             integer can be analyzed with net.sourceforge.phpdt.core.Flags
  * @param modifierRange - a two element array describing the location of
  *             modifiers for this member within its source range. The first integer
  *             is the first character of the first modifier for this member, and
@@ -91,7 +90,7 @@ DOMInitializer(char[] document, int[] sourceRange, int[] commentRange, int flags
  *             An array of -1's indicates this node's contents do not exist
  *             in the document.
  * @param flags - an integer representing the modifiers for this member. The
- *             integer can be analyzed with org.eclipse.jdt.core.Flags
+ *             integer can be analyzed with net.sourceforge.phpdt.core.Flags
  */
 DOMInitializer(char[] document, int[] sourceRange, int flags) {
        this(document, sourceRange, new int[] {-1, -1}, flags, new int[] {-1, -1}, -1);