1 /*******************************************************************************
 
   2  * Copyright (c) 2000, 2003 IBM Corporation and others.
 
   3  * All rights reserved. This program and the accompanying materials 
 
   4  * are made available under the terms of the Common Public License v1.0
 
   5  * which accompanies this distribution, and is available at
 
   6  * http://www.eclipse.org/legal/cpl-v10.html
 
   9  *     IBM Corporation - initial API and implementation
 
  10  *******************************************************************************/
 
  11 package net.sourceforge.phpdt.internal.ui.text.java;
 
  13 import org.eclipse.core.runtime.IProgressMonitor;
 
  16  * Extension to <code>IProblemRequestor</code>.
 
  18 public interface IProblemRequestorExtension {
 
  21          * Sets the progress monitor to this problem requestor.
 
  24          *            the progress monitor to be used
 
  26         void setProgressMonitor(IProgressMonitor monitor);
 
  29          * Sets the active state of this problem requestor.
 
  32          *            the state of this problem requestor
 
  34         void setIsActive(boolean isActive);
 
  37          * Informs the problem requestor that a sequence of reportings is about to
 
  38          * start. While a sequence is active, multiple peering calls of
 
  39          * <code>beginReporting</code> and <code>endReporting</code> can appear.
 
  43         void beginReportingSequence();
 
  46          * Informs the problem requestor that the sequence of reportings has been
 
  51         void endReportingSequence();