blob: 72b30813180f16ce07e65449a051dbb58ebe39ad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.javaeditor;
/**
* <code>ICompoundEditListener</code>s can be registered with a
* {@link CompoundEditExitStrategy} to be notified if a compound edit session is ended.
*
* @since 3.1
*/
public interface ICompoundEditListener {
/**
* Notifies the receiver that the sending <code>CompoundEditExitStrategy</code> has
* detected the end of a compound operation.
*/
void endCompoundEdit();
}