gpt4 book ai didi

com.tc.admin.common.XObjectTable.setSelectionMode()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-24 00:13:05 31 4
gpt4 key购买 nike

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

XObjectTable.setSelectionMode介绍

暂无

代码示例

代码示例来源:origin: org.terracotta.modules/tim-ehcache-2.0

cacheTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
cacheTable.addHierarchyListener(this);
cacheTable.getSelectionModel().addListSelectionListener(this);

代码示例来源:origin: org.terracotta.modules/tim-ehcache-2.0-hibernate-ui

public void setup(final ApplicationContext appContext, final IClusterModel clusterModel, final String persistenceUnit) {
 this.appContext = appContext;
 this.clusterModel = clusterModel;
 this.persistenceUnit = persistenceUnit;
 add(createTopPanel(), BorderLayout.NORTH);
 table = new XObjectTable(tableModel = new RegionInfoTableModel());
 table.getColumnModel().getColumn(1).setCellRenderer(new CachedColumnRenderer());
 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
 table.getSelectionModel().addListSelectionListener(this);
 detailPanel = new CacheRegionDetailPanel(appContext);
 add(new XScrollPane(table), BorderLayout.CENTER);
 appContext.submit(new RegionInfoGetter());
}

代码示例来源:origin: org.terracotta.modules/tim-ehcache-2.x-ui

private XContainer createNodeSummaryPanel() {
 XContainer panel = new XContainer(new BorderLayout());
 String title = MessageFormat.format(bundle.getString("node.summary"), cacheManagerModel.getName());
 panel.setBorder(BorderFactory.createTitledBorder(title));
 nodeSummaryTableModel = new NodeSummaryTableModel();
 nodeSummaryTable = new XObjectTable(nodeSummaryTableModel);
 nodeSummaryTable.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
 nodeSummaryTable.getSelectionModel().addListSelectionListener(this);
 panel.add(createSelectAllPanel(nodeSummaryTable), BorderLayout.SOUTH);
 panel.add(new XScrollPane(nodeSummaryTable));
 nodeSummaryTable.setDefaultRenderer(Boolean.class, new BooleanRenderer());
 JPopupMenu popup = topologyPanel.createPopup();
 nodeSummaryTable.setPopupMenu(popup);
 popup.addPopupMenuListener(new PopupMenuAdapter() {
  @Override
  public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
   updateActions(nodeSummaryTable);
  }
 });
 return panel;
}

代码示例来源:origin: org.terracotta.modules/tim-hibernate-cache-provider-3.2

public void setup(final ApplicationContext appContext, final IClusterModel clusterModel, final String persistenceUnit) {
 this.appContext = appContext;
 this.clusterModel = clusterModel;
 this.persistenceUnit = persistenceUnit;
 add(createTopPanel(), BorderLayout.NORTH);
 table = new XObjectTable(tableModel = new RegionInfoTableModel());
 table.getColumnModel().getColumn(1).setCellRenderer(new CachedColumnRenderer());
 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
 table.getSelectionModel().addListSelectionListener(this);
 detailPanel = new CacheRegionDetailPanel(appContext);
 add(new XScrollPane(table), BorderLayout.CENTER);
 appContext.submit(new RegionInfoGetter());
}

代码示例来源:origin: org.terracotta.modules/tim-ehcache-2.x-hibernate-ui

public void setup(final ApplicationContext appContext, final IClusterModel clusterModel, final String persistenceUnit) {
 this.appContext = appContext;
 this.clusterModel = clusterModel;
 this.persistenceUnit = persistenceUnit;
 add(createTopPanel(), BorderLayout.NORTH);
 table = new XObjectTable(tableModel = new RegionInfoTableModel());
 table.getColumnModel().getColumn(1).setCellRenderer(new CachedColumnRenderer());
 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
 table.getSelectionModel().addListSelectionListener(this);
 detailPanel = new CacheRegionDetailPanel(appContext);
 add(new XScrollPane(table), BorderLayout.CENTER);
 appContext.submit(new RegionInfoGetter());
}

代码示例来源:origin: org.terracotta.modules/tim-ehcache-2.x-ui

private XContainer createCacheSummaryPanel() {
 final XContainer panel = new XContainer(new BorderLayout());
 panel.setBorder(BorderFactory.createTitledBorder(bundle.getString("cache.summary")));
 cacheSummaryTableModel = new CacheSummaryTableModel();
 cacheSummaryTable = new XObjectTable(cacheSummaryTableModel);
 cacheSummaryTable.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
 cacheSummaryTable.getSelectionModel().addListSelectionListener(this);
 panel.add(createSelectAllPanel(cacheSummaryTable), BorderLayout.SOUTH);
 panel.add(new XScrollPane(cacheSummaryTable));
 cacheSummaryTable.setDefaultRenderer(Boolean.class, new BooleanRenderer());
 JPopupMenu popup = topologyPanel.createPopup();
 cacheSummaryTable.setPopupMenu(popup);
 popup.addPopupMenuListener(new PopupMenuAdapter() {
  @Override
  public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
   updateActions(cacheSummaryTable);
  }
 });
 return panel;
}

代码示例来源:origin: org.terracotta.modules/tim-ehcache-1.7-ui

public void setup(ApplicationContext appContext, CacheManagerModel cacheManagerModel) {
 this.appContext = appContext;
 this.cacheManagerModel = cacheManagerModel;
 add(createTopPanel(), BorderLayout.NORTH);
 add(new XScrollPane(table = new XObjectTable()), BorderLayout.CENTER);
 table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
 table.setComponentPopupMenu(createPopupMenu());
 table.getSelectionModel().addListSelectionListener(this);
 table.setDefaultRenderer(Boolean.class, new TextualBooleanRenderer());
 appContext.submit(new CacheConfigurationTableModelGetter());
}

代码示例来源:origin: org.terracotta.modules/tim-ehcache-2.x-ui

cacheTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
cacheTable.addHierarchyListener(this);
cacheTable.getSelectionModel().addListSelectionListener(this);

代码示例来源:origin: org.terracotta.modules/tim-ehcache-2.0

public void setup(ApplicationContext appContext, CacheManagerModel cacheManagerModel) {
 this.appContext = appContext;
 this.cacheManagerModel = cacheManagerModel;
 add(createTopPanel(), BorderLayout.NORTH);
 add(new XScrollPane(table = new XObjectTable()), BorderLayout.CENTER);
 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
 table.setComponentPopupMenu(createPopupMenu());
 table.getSelectionModel().addListSelectionListener(this);
 table.setDefaultRenderer(Boolean.class, new TextualBooleanRenderer());
 detailPanel = new CacheDetailPanel(appContext);
 appContext.submit(new CacheTableModelGetter());
}

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com