
org.openxma.rwt.launch.RWTTest Maven / Gradle / Ivy
The newest version!
package org.openxma.rwt.launch;
import org.eclipse.rwt.lifecycle.IEntryPoint;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
public class RWTTest implements IEntryPoint {
public int createUI() {
Display display = new Display();
Shell shell = new Shell( display );
shell.setText("RWT application");
// Label label = new Label( shell, SWT.NONE );
// label.setText( "Hello RAP World" );
// label.setSize( 80, 20 );
shell.setSize( 500, 400 );
shell.open();
// RWTServlet l;
return 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy