blob: acd483ae1831c8e57b344511abb00524370b4db6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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
*******************************************************************************/
package org.eclipse.pde.internal.runtime.registry.model;
/**
* Event provides a list of objects that have changed.
* Possible objects on the list are IBundle, IService, IExtension, IExtensionPoint.
*
* This is temporary solution and is subject to future changes.
*/
public interface ModelChangeListener {
void modelChanged(ModelChangeDelta[] deltas);
}