Parser detects wrong include files now
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / parser / Outlineable.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/Outlineable.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/Outlineable.java
deleted file mode 100644 (file)
index 90a5527..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-package net.sourceforge.phpdt.internal.compiler.parser;
-
-import org.eclipse.jface.resource.ImageDescriptor;
-import org.eclipse.jface.text.Position;
-
-/**
- * Here is an interface that object that can be in the outline view must implement.
- * @author Matthieu Casanova
- */
-public interface Outlineable {
-
-  /**
-   * This will return the image for the outline of the object.
-   * @return an image
-   */
-  ImageDescriptor getImage();
-
-  Object getParent();
-
-  Position getPosition();
-}