Example usage for org.springframework.ide.eclipse.boot.wizard.importing ImportStrategy getBuildType

List of usage examples for org.springframework.ide.eclipse.boot.wizard.importing ImportStrategy getBuildType

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.wizard.importing ImportStrategy getBuildType.

Prototype

public BuildType getBuildType() 

Source Link

Usage

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;
}