Example usage for org.springframework.ide.eclipse.boot.launch.util BootLaunchUtils getLaunches

List of usage examples for org.springframework.ide.eclipse.boot.launch.util BootLaunchUtils getLaunches

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.launch.util BootLaunchUtils getLaunches.

Prototype

public static List<ILaunch> getLaunches(Set<ILaunchConfiguration> configs) 

Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.dash.model.LaunchConfDashElement.java

@Override
public ImmutableSet<ILaunch> getLaunches() {
    return ImmutableSet.copyOf(BootLaunchUtils.getLaunches(ImmutableSet.of(delegate)));
}