blob: 74f222a659ae4b0b53188062287e6cbe66f83745 [file] [log] [blame]
// IRemoveListener
package org.eclipse.stem.util.loggers.views;
/*******************************************************************************
* Copyright (c) 2007,2008 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
*******************************************************************************/
import org.eclipse.stem.core.common.Identifiable;
/**
* When the remove button is pressed by the user
* @author James
*
*/
public interface IRemoveListener {
/**
*
* @param identifiable
*/
void identifiableRemoved(Identifiable identifiable) ;
}