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

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

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

Table.removeAllItems介绍

暂无

代码示例

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {
    modules.removeAllItems();
    flows.removeAllItems();
    components.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {
    modules.removeAllItems();
    flows.removeAllItems();
    components.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void clear()
{
  this.businessStream = null;
  this.resultsTable.removeAllItems();
}

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {
    modules.removeAllItems();
    flows.removeAllItems();
    components.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {
    modules.removeAllItems();
    flows.removeAllItems();
    components.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {
    modules.removeAllItems();
    flows.removeAllItems();
    components.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {
    modules.removeAllItems();
    flows.removeAllItems();
    components.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {
    modules.removeAllItems();
    flows.removeAllItems();
    components.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {
    modules.removeAllItems();
    flows.removeAllItems();
    components.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event)
  {
    modules.removeAllItems();
    flows.removeAllItems();
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void clear()
  {
    this.searchResultsTable.removeAllItems();
  }
}

代码示例来源:origin: org.activiti/activiti-explorer

public void notifyGroupChanged(String managementId) {
 // Clear cache
  managementTable.removeAllItems();
 
 // select changed group
 managementTable.select(Integer.valueOf(managementId));
}

代码示例来源:origin: at.chrl/chrl-spring

/**
 * {@inheritDoc}
 * 
 * @see com.vaadin.navigator.View#enter(com.vaadin.navigator.ViewChangeListener.ViewChangeEvent)
 */
@Override
public void enter(ViewChangeEvent event) {
  tbl.removeAllItems();
  loadProperties();
}

代码示例来源:origin: org.activiti/activiti-explorer

public void notifyGroupChanged(String groupId) {
 // Clear cache
 groupTable.removeAllItems();
 groupListContainer.removeAllItems();
 
 // select changed group
 groupTable.select(groupListContainer.getIndexForObjectId(groupId));
}

代码示例来源:origin: org.activiti/activiti-explorer

protected void refreshEvents() {
 stepButton.setEnabled(false);
 showProcessInstanceButton.setVisible(false);
 eventTable.removeAllItems();
 fillEventValues();
}

代码示例来源:origin: org.activiti/activiti-explorer

/**
 * Call when some user data has been changed
 */
public void notifyUserChanged(String userId) {
 // Clear cache
 userTable.removeAllItems();
 userListContainer.removeAllItems();
 
 userTable.select(userListContainer.getIndexForObjectId(userId));
}

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

public void buttonClick(ClickEvent event) 
  {               
    List<BusinessStream> businessStreams = topologyService.getAllBusinessStreams();
    resultsTable.removeAllItems();
    
    for(BusinessStream businessStream: businessStreams)
    {
      resultsTable.addItem(new Object[]{businessStream.getName(), businessStream.getDescription()}, businessStream);
    }
  }
});

代码示例来源:origin: org.ikasan/ikasan-dashboard-jar

protected void populateAll()
{
  final IkasanAuthentication authentication = (IkasanAuthentication)VaadinService.getCurrentRequest().getWrappedSession()
      .getAttribute(DashboardSessionValueConstants.USER);
  List<AuthenticationMethod> authenticationMethods = this.securityService.getAuthenticationMethods();
  
  this.directoryTable.removeAllItems();
  
  for(final AuthenticationMethod authenticationMethod: authenticationMethods)
  {
    this.populateDirectoryTable(authenticationMethod);
  }    
}

代码示例来源:origin: org.activiti/activiti-explorer

protected void refreshInstancesTable() {
  instancesTable.removeAllItems();
  for (HistoricProcessInstance instance : selectedManagementDefinition.runningInstances) {
    instancesTable.addItem(new String[]{instance.getId(), 
        instance.getBusinessKey(),
      instance.getStartUserId(),
      instance.getStartActivityId(),
      instance.getStartTime().toString()}, 
      instance.getId());
  }
}

代码示例来源:origin: org.activiti/activiti-explorer

protected void refreshInstances(String processDefinitionId) {
 instanceList = historyService.createHistoricProcessInstanceQuery()
   .processDefinitionId(processDefinitionId)
   .orderByProcessInstanceStartTime()
   .desc()
   .list();
 instanceTable.removeAllItems();
 fillInstanceValues();
}

相关文章

微信公众号

最新文章

更多