Example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client CFApplication getMemory

List of usage examples for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client CFApplication getMemory

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.boot.dash.cloudfoundry.client CFApplication getMemory.

Prototype

int getMemory();

Source Link

Usage

From source file:org.springframework.ide.eclipse.boot.dash.cloudfoundry.CloudAppDashElement.java

public Integer getMemory() {
    CFApplication app = getSummaryData();
    if (app != null) {
        return app.getMemory();
    }/* ww  w  . ja  v  a  2 s .c  o m*/
    return null;
}