blob: 5b0a2b4b575b95afd2d2263db5d63ce08d687c13 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 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.debug.internal.ui.viewers.provisional;
/**
* A model changed listener is notified of changes in a model. A model
* is represented by an {@link IModelProxy}.
*
* @since 3.2
* @see IModelProxy
* @see IModelDeltaNode
*/
public interface IModelChangedListener {
/**
* Notification a model has changed as described by the given delta.
*
* @param delta model delta
*/
public void modelChanged(IModelDelta delta);
}