Example usage for com.vaadin.ui Label getValue

List of usage examples for com.vaadin.ui Label getValue

Introduction

In this page you can find the example usage for com.vaadin.ui Label getValue.

Prototype

public String getValue() 

Source Link

Document

Gets the text shown in the label.

Usage

From source file:views.MetadataUploadView.java

License:Open Source License

private String parseLabelCell(int id, Object propertyId) {
    Item item = getActiveTable().getItem(id);
    Label l = (Label) item.getItemProperty(propertyId).getValue();
    return l.getValue();
}