Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f847eea32b339256d7b08f0c549ffc9a93b5a5da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.eclipse.papyrus.navigator.providers;

import org.eclipse.emf.transaction.ResourceSetChangeEvent;
import org.eclipse.ui.navigator.ICommonContentProvider;

/**
 * @author <a href="mailto:jerome.benois@obeo.fr">Jerome Benois</a>
 **/
public interface IContentProvider extends ICommonContentProvider {

	public void resourceSetChanged(ResourceSetChangeEvent event);
}

Back to the top