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

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

Introduction

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

Prototype

public String getOutputStyle() 

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. j a v a2s  .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());
}