misc changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / text / java / IProblemRequestorExtension.java
index 2ffc389..a5af585 100644 (file)
@@ -32,4 +32,20 @@ public interface IProblemRequestorExtension {
         * @param isActive the state of this problem requestor
         */
        void setIsActive(boolean isActive);
+       
+       /**
+        * Informs the problem requestor that a sequence of reportings is about to start. While
+        * a sequence is active, multiple peering calls of <code>beginReporting</code> and
+        * <code>endReporting</code> can appear.
+        * 
+        * @since 3.0
+        */
+       void beginReportingSequence();
+       
+       /**
+        * Informs the problem requestor that the sequence of reportings has been finished.
+        * 
+        * @since 3.0
+        */
+       void endReportingSequence();
 }