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


/**
 * Allows to access to properties of a Sash ComponentPage.
 * 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 IComponentPage extends IPage {

}

Back to the top