1 package org.argeo.tracker.e4.parts;
2
3 import org.eclipse.swt.layout.GridLayout;
4 import org.eclipse.swt.widgets.Composite;
5
6 class Section extends Composite {
7 private static final long serialVersionUID = -7682652336964238982L;
8 private Composite client;
9
10 public Section(Composite parent, int style) {
11 super(parent, style);
12 setLayout(new GridLayout());
13 }
14
15 public void setClient(Composite client) {
16 this.client = client;
17 }
18
19 public Composite getClient() {
20 return client;
21 }
22
23 public void setText(String text) {
24
25 }
26
27 public void setTextClient(Composite composite) {
28
29 }
30 }