Example usage for org.springframework.ide.eclipse.boot.core BootPreferences BootPreferences

List of usage examples for org.springframework.ide.eclipse.boot.core BootPreferences BootPreferences

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.core BootPreferences BootPreferences.

Prototype

private BootPreferences() 

Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.core.BootPreferences.java

public synchronized static BootPreferences getInstance() {
    if (INSTANCE == null) {
        INSTANCE = new BootPreferences();
    }/*  ww  w  . j  a v a2 s.com*/
    return INSTANCE;
}