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

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

Introduction

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

Prototype

public GWTCompileSettings() 

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());
    }/*from   www.  j  ava 2s  . c  o m*/

    // 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());
}