Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c03e8cdef955e8ebeb54fd9144cbef64b263db27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (c) 2014 CEA 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:
 *   Christian W. Damus (CEA) - Initial API and implementation
 *
 */
package org.eclipse.papyrus.infra.properties.ui.modelelement;

import java.util.EventListener;

import org.eclipse.core.databinding.observable.IObservable;


/**
 * A listener protocol for changes to a {@link DataSource} (especially its selection). Data sources are not {@linkplain IObservable observables} because that would confuse the XWT bindings framework.
 *
 * @see DataSource
 * @see DataSource#addDataSourceListener(IDataSourceListener)
 */
public interface IDataSourceListener extends EventListener {

	void dataSourceChanged(DataSourceChangedEvent event);
}

Back to the top