Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7aa750cd3004d814818794b9000fbe5cb31e0813 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 *
 */
package org.eclipse.papyrus.infra.core.sasheditor.editor;



/**
 * @author cedric dumoulin
 *
 */
public interface IPageChangedListener {

	/**
	 * Method called when the page is changed
	 *
	 * @param newPage
	 *            The new page, or null if there is no container.
	 */
	public void pageChanged(IPage newPage);

}

Back to the top