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

import org.eclipse.papyrus.infra.core.sasheditor.internal.SashWindowsContainer;


/**
 * A Visitor used to visit all the {@link IPage} of a {@link SashWindowsContainer}.
 * 
 * @author cedric dumoulin
 * 
 */
public interface IPageVisitor {

	/**
	 * Visit the provided page of type {@link IComponentPage}.
	 * 
	 * @param page
	 */
	void accept(IComponentPage page);

	/**
	 * Visit the provided page of type {@link IEditorPage}.
	 * 
	 * @param page
	 */
	void accept(IEditorPage page);

}

Back to the top