Refactored packagename to net.sourceforge.phpdt.internal.compiler.ast
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / lookup / ImportBinding.java
index 8fc5dce..b226412 100644 (file)
@@ -11,7 +11,7 @@
 package net.sourceforge.phpdt.internal.compiler.lookup;
 
 import net.sourceforge.phpdt.core.compiler.CharOperation;
-import net.sourceforge.phpeclipse.internal.compiler.ast.ImportReference;
+import net.sourceforge.phpdt.internal.compiler.ast.ImportReference;
 
 public class ImportBinding extends Binding {
        public char[][] compoundName;
@@ -40,6 +40,6 @@ public char[] readableName() {
                return CharOperation.concatWith(compoundName, '.');
 }
 public String toString() {
-       return "import : " + new String(readableName()); //$NON-NLS-1$
+       return "include : " + new String(readableName()); //$NON-NLS-1$
 }
 }