List of usage examples for org.springframework.ide.eclipse.boot.wizard.importing ImportStrategy getBuildType
public BuildType getBuildType()
From source file:org.springframework.ide.eclipse.boot.wizard.NewSpringBootWizardModel.java
/** * Gets the currently selected BuildType. *//*from ww w . j a v a2 s . c om*/ public BuildType getBuildType() { ImportStrategy is = getImportStrategy(); if (is != null) { return is.getBuildType(); } return null; }