Example usage for org.springframework.ide.eclipse.boot.wizard RadioInfo setLabel

List of usage examples for org.springframework.ide.eclipse.boot.wizard RadioInfo setLabel

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.wizard RadioInfo setLabel.

Prototype

public void setLabel(String label) 

Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.wizard.NewSpringBootWizardModel.java

private void addOptions(RadioGroup group, Option[] options) {
    for (Option option : options) {
        RadioInfo radio = new RadioInfo(group.getName(), option.getId(), option.isDefault());
        radio.setLabel(option.getName());
        group.add(radio);//from  ww  w. j  a  v a2s .  c  o m
    }
}