com.vaadin.v7.ui.Table.getState()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(371)

本文整理了Java中com.vaadin.v7.ui.Table.getState()方法的一些代码示例,展示了Table.getState()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Table.getState()方法的具体详情如下:
包路径:com.vaadin.v7.ui.Table
类名称:Table
方法名:getState

Table.getState介绍

暂无

代码示例

代码示例来源:origin: com.vaadin/vaadin-compatibility-server

  1. /**
  2. * Sets whether only collapsible columns should be shown to the user in the
  3. * column collapse menu. The default is
  4. * {@link CollapseMenuContent#ALL_COLUMNS}.
  5. *
  6. *
  7. * @since 7.6
  8. * @param content
  9. * the desired collapsible menu content setting
  10. */
  11. public void setCollapseMenuContent(CollapseMenuContent content) {
  12. getState().collapseMenuContent = content;
  13. }

代码示例来源:origin: com.vaadin/vaadin-compatibility-server

  1. /**
  2. * Checks whether only collapsible columns are shown to the user in the
  3. * column collapse menu. The default is
  4. * {@link CollapseMenuContent#ALL_COLUMNS} .
  5. *
  6. * @since 7.6
  7. * @return the current collapsible menu content setting
  8. */
  9. public CollapseMenuContent getCollapseMenuContent() {
  10. return getState(false).collapseMenuContent;
  11. }
  12. }

代码示例来源:origin: com.vaadin/vaadin-compatibility-server

  1. @Override
  2. protected TreeTableState getState() {
  3. return (TreeTableState) super.getState();
  4. }
  5. }

代码示例来源:origin: com.vaadin/vaadin-compatibility-server

  1. @Override
  2. protected TableState getState() {
  3. return getState(true);
  4. }

代码示例来源:origin: com.haulmont.cuba/cuba-web-widgets

  1. @Override
  2. protected CubaTableState getState() {
  3. return (CubaTableState) super.getState();
  4. }

代码示例来源:origin: com.haulmont.cuba/cuba-web-widgets

  1. @Override
  2. protected CubaTableState getState(boolean markAsDirty) {
  3. return (CubaTableState) super.getState(markAsDirty);
  4. }

相关文章

Table类方法