Example usage for com.google.gwt.eclipse.core.launch GWTLaunchAttributes OUTPUT_STYLES

List of usage examples for com.google.gwt.eclipse.core.launch GWTLaunchAttributes OUTPUT_STYLES

Introduction

In this page you can find the example usage for com.google.gwt.eclipse.core.launch GWTLaunchAttributes OUTPUT_STYLES.

Prototype

String[] OUTPUT_STYLES

To view the source code for com.google.gwt.eclipse.core.launch GWTLaunchAttributes OUTPUT_STYLES.

Click Source Link

Usage

From source file:com.myeclipsedev.gdt.eclipse.ui.internal.wizard.WebComponentExportPage.java

License:Open Source License

private void createOutputStyleControl(Composite parent) {
    new Label(parent, SWT.None).setText("Output style:");

    outputStyleComboViewer = new ComboViewer(parent, SWT.READ_ONLY);
    outputStyleComboViewer.setContentProvider(new ArrayContentProvider());
    outputStyleComboViewer.setLabelProvider(new DefaultComboLabelProvider());
    outputStyleComboViewer.setInput(GWTLaunchAttributes.OUTPUT_STYLES);
}