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

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

Introduction

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

Prototype

public void setOutputStyle(String outputStyle) 

Source Link

Usage

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

License:Open Source License

public GWTCompileSettings getCompileSettings() {
    GWTCompileSettings settings = new GWTCompileSettings(project);
    settings.setOutputStyle(outputStyle);
    settings.setLogLevel(logLevel);//  ww  w .  j  a  v a2  s  .c o m
    return settings;
}