List of usage examples for com.google.gwt.eclipse.core.compile GWTCompileSettings getLogLevel
public String getLogLevel()
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()); }