Vaadin 7 : TableFieldFactory
问题 Is there a way to implent TableFactory interface with specific fields related to propertyId ? I only get one type of field since i'm using a generic class for all my tables, and the i'm missing CheckBox boolean value (groovy code): class DefaultTableFieldFactory implements TableFieldFactory { @Override public Field<?> createField(Container container, Object itemId, Object propertyId, Component component) { TextField t = new TextField() switch(propertyId) { case "firstname": t