List of usage examples for com.vaadin.ui Label getValue
public String getValue()
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(); }