Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5254420bdc90631aa3cef6101be133f3de8833bd (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
/**
 * 
 */
package org.eclipse.papyrus.infra.core.sasheditor.editor;

import org.eclipse.ui.IEditorPart;

/**
 * Allows to access to properties of a Sash IEditor Page. This interface allows
 * to read the data. User should not attent to modifiy or write the data in
 * anyway. This interface is provided as parameter of the {@link IPageChangedListener#pageChanged(IPage)} event and in the
 * SashContainer Visitor.
 * 
 * @author cedric dumoulin
 * 
 */
public interface IEditorPage extends IPage {

	/**
	 * Returns the active nested editor if there is one.
	 * 
	 * @return the active nested editor, or <code>null</code> if none
	 */
	public IEditorPart getIEditorPart();

}

Back to the top