Example usage for org.springframework.ide.eclipse.core.model IModelElement toString

List of usage examples for org.springframework.ide.eclipse.core.model IModelElement toString

Introduction

In this page you can find the example usage for org.springframework.ide.eclipse.core.model IModelElement toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:org.eclipse.virgo.ide.manifest.internal.core.model.BundleManifest.java

@Override
public String toString() {
    StringBuilder builder = new StringBuilder();
    builder.append(file.getLocation().toString()).append("\n");
    for (IModelElement element : getElementChildren()) {
        builder.append(element.toString()).append("\n");
    }//from   ww w  . ja v  a2s  .c  o  m
    return builder.toString();
}