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

import org.eclipse.swt.widgets.Composite;

/**
 * This model represent a ui Component to be shown in a sash window folder.
 * 
 * @author dumoulin
 * 
 */
public interface IComponentModel extends IPageModel {

	/**
	 * Create the Control corresponding to this model.
	 * 
	 * @param parent
	 *        The parent of the created container.
	 * @return
	 */
	public Composite createPartControl(Composite parent);

}

Back to the top