1 /*******************************************************************************
2 * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v0.5
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v05.html
9 * IBM Corporation - initial API and implementation
10 ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler;
13 public interface IDebugRequestor {
16 * Debug callback method allowing to take into account a new compilation result.
17 * Any side-effect performed on the actual result might interfere with the
18 * original compiler requestor, and should be prohibited.
20 void acceptDebugResult(CompilationResult result);
23 * Answers true when in active mode
28 * Activate debug callbacks
33 * Deactivate debug callbacks
38 * Reset debug requestor after compilation has finished