Example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry CloudFoundryBootDashModel getApplicationValues

List of usage examples for org.springframework.ide.eclipse.boot.dash.cloudfoundry CloudFoundryBootDashModel getApplicationValues

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry CloudFoundryBootDashModel getApplicationValues.

Prototype

public ImmutableSet<CloudAppDashElement> getApplicationValues() 

Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.dash.test.CloudFoundryBootDashModelMockingTest.java

private CloudAppDashElement getApplication(CloudFoundryBootDashModel model, IProject project) {
    for (CloudAppDashElement app : model.getApplicationValues()) {
        IProject p = app.getProject();/*from w w  w .  jav  a  2s  .com*/
        if (project.equals(p)) {
            return app;
        }
    }
    return null;
}