1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse.ui / src / net / sourceforge / phpeclipse / phpeditor / IProblemAnnotation.java
diff --git a/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/phpeditor/IProblemAnnotation.java b/net.sourceforge.phpeclipse.ui/src/net/sourceforge/phpeclipse/phpeditor/IProblemAnnotation.java
deleted file mode 100644 (file)
index bd6a3ee..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-package net.sourceforge.phpeclipse.phpeditor;
-
-/*
- * (c) Copyright IBM Corp. 2000, 2001.
- * All Rights Reserved.
- */
-
-import java.util.Iterator;
-
-import org.eclipse.swt.graphics.Image;
-import org.eclipse.swt.widgets.Display;
-
-/**
- * Interface of annotations representing problems.
- */
-public interface IProblemAnnotation {
-
-       AnnotationType getAnnotationType();
-
-       boolean isTemporary();
-
-       String getMessage();
-
-       String[] getArguments();
-
-       int getId();
-
-       Image getImage(Display display);
-
-       boolean isRelevant();
-
-       boolean hasOverlay();
-
-       Iterator getOverlaidIterator();
-
-       void addOverlaid(IProblemAnnotation annotation);
-
-       void removeOverlaid(IProblemAnnotation annotation);
-
-       /**
-        * @deprecated
-        */
-       boolean isProblem();
-
-       /**
-        * @deprecated
-        */
-       boolean isTask();
-
-       /**
-        * @deprecated
-        */
-       boolean isWarning();
-
-       /**
-        * @deprecated
-        */
-       boolean isError();
-}