blob: be26f999d8baa7c86d5b9e323f2b32d6284d9a98 [file] [log] [blame]
package @@BUNDLE_SWT_NAME@@;
import org.eclipse.scout.rt.ui.swt.AbstractSwtStartup;
import org.eclipse.scout.rt.ui.swt.ISwtEnvironment;
/** <h3>SwtStartup</h3>
* The startup class is registered as an extension in the plugin.xml.
* It is used to be aware that the Workbench is ready.
* @see AbstractSwtStartup
*/
public class SwtStartup extends AbstractSwtStartup{
@Override
protected ISwtEnvironment getSwtEnvironment(){
return Activator.getDefault().getEnvironment();
}
}