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

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

Introduction

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

Prototype

String[] LOG_LEVELS

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

Click Source Link

Usage

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

License:Open Source License

private void createLogLevelControl(Composite parent) {
    new Label(parent, SWT.None).setText("Log level:");

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