List of usage examples for com.vaadin.v7.ui Table setEditable
public void setEditable(boolean editable)
From source file:de.symeda.sormas.ui.caze.AbstractTableField.java
License:Open Source License
protected Table createTable() { final Table table = new Table(); table.setEditable(false); table.setSelectable(false);//from ww w. j a v a 2 s . c o m table.setSizeFull(); createEditColumn(table); return table; }