1 /******************************************************************************* 2 * Copyright (c) 2000, 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.jdt.debug.eval; 12 13 14 /** 15 * Evaluation results are reported to evaluation listeners 16 * on the completion of an evaluation. The evaluation 17 * may fail but a result will be supplied indicating the 18 * problems. 19 * <p> 20 * Clients may implement this interface. 21 * </p> 22 * @see IEvaluationResult 23 * @since 2.0 24 */ 25 26 public interface IEvaluationListener { 27 28 /** 29 * Notifies this listener that an evaluation has completed, with the 30 * given result. 31 * 32 * @param result The result from the evaluation 33 * @see IEvaluationResult 34 */ 35 public void evaluationComplete(IEvaluationResult result); 36 } 37