View Javadoc
1   package org.argeo.tracker.e4.parts;
2   
3   import org.argeo.cms.ui.eclipse.forms.AbstractFormPart;
4   import org.eclipse.swt.widgets.Composite;
5   
6   class SectionPart extends AbstractFormPart {
7   	private Composite section;
8   
9   	public SectionPart(Composite section) {
10  		super();
11  		this.section = section;
12  	}
13  
14  	@Deprecated
15  	public Section getSection() {
16  		return (Section) section;
17  	}
18  
19  	public Composite getComposite() {
20  		return section;
21  	}
22  }