diff options
Diffstat (limited to 'server/src/com/vaadin/ui/Table.java')
-rw-r--r-- | server/src/com/vaadin/ui/Table.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/Table.java b/server/src/com/vaadin/ui/Table.java index a6b40ff06b..69874d9947 100644 --- a/server/src/com/vaadin/ui/Table.java +++ b/server/src/com/vaadin/ui/Table.java @@ -68,6 +68,7 @@ import com.vaadin.shared.ui.MultiSelectMode; import com.vaadin.shared.ui.table.TableConstants; import com.vaadin.shared.ui.table.TableConstants.Section; import com.vaadin.shared.ui.table.TableServerRpc; +import com.vaadin.shared.ui.table.TableState; import com.vaadin.shared.util.SharedUtil; import com.vaadin.ui.declarative.DesignAttributeHandler; import com.vaadin.ui.declarative.DesignContext; @@ -1033,8 +1034,8 @@ public class Table extends AbstractSelect implements Action.Container, * </p> * * <p> - * If Table has height set ({@link #setHeight(float, Unit)} ) the client side - * may update the page length automatically the correct value. + * If Table has height set ({@link #setHeight(float, Unit)} ) the client + * side may update the page length automatically the correct value. * </p> * * @param pageLength @@ -6455,6 +6456,11 @@ public class Table extends AbstractSelect implements Action.Container, } } + @Override + protected TableState getState() { + return (TableState) super.getState(); + } + private final Logger getLogger() { if (logger == null) { logger = Logger.getLogger(Table.class.getName()); |