View Javadoc
1   package org.argeo.cms.e4.jcr;
2   
3   import javax.annotation.PostConstruct;
4   
5   import org.eclipse.swt.SWT;
6   import org.eclipse.swt.layout.GridLayout;
7   import org.eclipse.swt.widgets.Composite;
8   import org.eclipse.swt.widgets.Label;
9   
10  public class SimplePart {
11  
12  	@PostConstruct
13  	void init(Composite parent) {
14  		parent.setLayout(new GridLayout());
15  		Label label = new Label(parent, SWT.NONE);
16  		label.setText("Hello e4 World");
17  	}
18  
19  }