List of usage examples for com.google.gwt.eclipse.core.launch GWTLaunchAttributes OUTPUT_STYLES
String[] OUTPUT_STYLES
To view the source code for com.google.gwt.eclipse.core.launch GWTLaunchAttributes OUTPUT_STYLES.
Click Source Link
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); }