Example usage for com.google.gwt.eclipse.core.compile GWTCompileSettings getLogLevel

List of usage examples for com.google.gwt.eclipse.core.compile GWTCompileSettings getLogLevel

Introduction

In this page you can find the example usage for com.google.gwt.eclipse.core.compile GWTCompileSettings getLogLevel.

Prototype

public String getLogLevel() 

Source Link

Usage

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

License:Open Source License

private void initializeControls() {
    // Set the project field if we have one set
    if (project != null) {
        projectText.setText(project.getName());
    }/*w  ww .  ja  va2  s.c om*/

    // If we have a GWT project, get its saved compilation settings;
    // otherwise
    // just use the defaults settings.
    GWTCompileSettings settings = (project != null) ? GWTProjectProperties.getGwtCompileSettings(project)
            : new GWTCompileSettings();

    initializeLogLevel(settings.getLogLevel());
    initializeOutputStyle(settings.getOutputStyle());
}