gpt4 book ai didi

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

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

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

XComboBox.<init>介绍

暂无

代码示例

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

protected XContainer createClusteredPanel() {
 XContainer result = new XContainer(new GridBagLayout());
 GridBagConstraints gbc = new GridBagConstraints();
 gbc.insets = new Insets(3, 3, 3, 3);
 gbc.gridx = gbc.gridy = 0;
 gbc.anchor = GridBagConstraints.WEST;
 result.add(clusteredCacheToggle = new XCheckBox("Clustered Caches:"), gbc);
 clusteredCacheToggle.addActionListener(new ActionListener() {
  public void actionPerformed(ActionEvent e) {
   boolean selected = clusteredCacheToggle.isSelected();
   clusteredCacheSelector.setEnabled(selected);
   standaloneCacheToggle.setSelected(!selected);
   cacheManagerInstanceSelector.setEnabled(!selected);
   standaloneCacheSelector.setEnabled(!selected);
  }
 });
 gbc.gridx++;
 result.add(clusteredCacheSelector = new XComboBox(), gbc);
 return result;
}

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

result.add(cacheManagerInstanceSelector = new XComboBox(), gbc);
cacheManagerInstanceSelector.addActionListener(new ActionListener() {
 public void actionPerformed(ActionEvent e) {
result.add(standaloneCacheSelector = new XComboBox(), gbc);
standaloneCacheSelector.addActionListener(new ActionListener() {
 public void actionPerformed(ActionEvent e) {

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

topPanel.add(new XLabel("CacheManager Instance:"), gbc);
gbc.gridx++;
topPanel.add(cacheManagerSelector = new XComboBox(), gbc);
gbc.gridx++;

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

private void setup() {
 setLayout(new BorderLayout());
 mainPanel = new XContainer(new BorderLayout());
 XContainer topPanel = new XContainer(new GridBagLayout());
 GridBagConstraints gbc = new GridBagConstraints();
 gbc.gridx = gbc.gridy = 0;
 gbc.insets = new Insets(3, 3, 3, 3);
 XLabel headerLabel;
 topPanel.add(headerLabel = new XLabel(bundle.getString("cache.manager")), gbc);
 headerLabel.setFont((Font) appContext.getObject("header.label.font"));
 gbc.gridx++;
 gbc.ipadx = 10;
 topPanel.add(cacheManagerSelector = new XComboBox(), gbc);
 cacheManagerSelector.addItemListener(new CacheManagerSelectionListener());
 gbc.gridx++;
 gbc.fill = GridBagConstraints.HORIZONTAL;
 gbc.weightx = 1.0;
 // filler
 topPanel.add(new XLabel(), gbc);
 gbc.gridx++;
 mainPanel.add(topPanel, BorderLayout.NORTH);
 mainPanel.add(pagedView = new PagedView(), BorderLayout.CENTER);
 messagePanel = new XContainer(new BorderLayout());
 messagePanel.add(messageLabel = new XLabel());
 messageLabel.setHorizontalAlignment(SwingConstants.CENTER);
 messageLabel.setFont((Font) appContext.getObject("message.label.font"));
 messageLabel.setText(appContext.getString("cluster.not.ready.msg"));
}

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

gbc.gridx++;
top.add(batchSizeSelector = new XComboBox(), gbc);
DefaultComboBoxModel model = (DefaultComboBoxModel) batchSizeSelector.getModel();
model.addElement(new Integer(10));

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

private void setup() {
 setLayout(new BorderLayout());
 mainPanel = new XContainer(new BorderLayout());
 XContainer topPanel = new XContainer(new GridBagLayout());
 GridBagConstraints gbc = new GridBagConstraints();
 gbc.gridx = gbc.gridy = 0;
 gbc.insets = new Insets(3, 3, 3, 3);
 XLabel headerLabel;
 topPanel.add(headerLabel = new XLabel(bundle.getString("cache.manager")), gbc);
 headerLabel.setFont((Font) appContext.getObject("header.label.font"));
 gbc.gridx++;
 gbc.ipadx = 10;
 topPanel.add(cacheManagerSelector = new XComboBox(), gbc);
 cacheManagerSelector.addItemListener(new CacheManagerSelectionListener());
 gbc.gridx++;
 gbc.fill = GridBagConstraints.HORIZONTAL;
 gbc.weightx = 1.0;
 // filler
 topPanel.add(new XLabel(), gbc);
 gbc.gridx++;
 mainPanel.add(topPanel, BorderLayout.NORTH);
 mainPanel.add(pagedView = new PagedView(), BorderLayout.CENTER);
 messagePanel = new XContainer(new BorderLayout());
 messagePanel.add(messageLabel = new XLabel());
 messageLabel.setHorizontalAlignment(SwingConstants.CENTER);
 messageLabel.setFont((Font) appContext.getObject("message.label.font"));
 messageLabel.setText(appContext.getString("cluster.not.ready.msg"));
}

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

private void setup() {
 setLayout(new BorderLayout());
 mainPanel = new XContainer(new BorderLayout());
 XContainer topPanel = new XContainer(new GridBagLayout());
 GridBagConstraints gbc = new GridBagConstraints();
 gbc.gridx = gbc.gridy = 0;
 gbc.insets = new Insets(3, 3, 3, 3);
 XLabel headerLabel;
 topPanel.add(headerLabel = new XLabel(bundle.getString("quartz.schedulers")), gbc);
 headerLabel.setFont((Font) appContext.getObject("header.label.font"));
 gbc.gridx++;
 gbc.ipadx = 10;
 topPanel.add(schedulerSelector = new XComboBox(), gbc);
 schedulerSelector.addItemListener(new SchedulerSelectionListener());
 gbc.gridx++;
 gbc.fill = GridBagConstraints.HORIZONTAL;
 gbc.weightx = 1.0;
 // filler
 topPanel.add(new XLabel(), gbc);
 gbc.gridx++;
 mainPanel.add(topPanel, BorderLayout.NORTH);
 mainPanel.add(pagedView = new PagedView(), BorderLayout.CENTER);
 messagePanel = new XContainer(new BorderLayout());
 messagePanel.add(messageLabel = new XLabel());
 messageLabel.setHorizontalAlignment(SwingConstants.CENTER);
 messageLabel.setFont((Font) appContext.getObject("message.label.font"));
 messageLabel.setText(appContext.getString("cluster.not.ready.msg"));
}

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

private void setup() {
 setLayout(new BorderLayout());
 mainPanel = new XContainer(new BorderLayout());
 XContainer topPanel = new XContainer(new GridBagLayout());
 GridBagConstraints gbc = new GridBagConstraints();
 gbc.gridx = gbc.gridy = 0;
 gbc.insets = new Insets(3, 3, 3, 3);
 XLabel headerLabel;
 topPanel.add(headerLabel = new XLabel(bundle.getString("cache.manager")), gbc);
 headerLabel.setFont((Font) appContext.getObject("header.label.font"));
 gbc.gridx++;
 gbc.ipadx = 10;
 topPanel.add(cacheManagerSelector = new XComboBox(), gbc);
 cacheManagerSelector.addItemListener(new CacheManagerSelectionListener());
 gbc.gridx++;
 topPanel.add(summaryLabel = new XLabel(), gbc);
 gbc.gridx++;
 // filler
 gbc.fill = GridBagConstraints.HORIZONTAL;
 gbc.weightx = 1.0;
 topPanel.add(new XLabel(), gbc);
 gbc.gridx++;
 mainPanel.add(topPanel, BorderLayout.NORTH);
 mainPanel.add(pagedView = new PagedView(), BorderLayout.CENTER);
 messagePanel = new XContainer(new BorderLayout());
 messagePanel.add(messageLabel = new XLabel());
 messageLabel.setHorizontalAlignment(SwingConstants.CENTER);
 messageLabel.setFont((Font) appContext.getObject("message.label.font"));
 messageLabel.setText(appContext.getString("cluster.not.ready.msg"));
}

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

gbc.ipadx = 10;
topPanel.add(puSelector = new XComboBox(), gbc);
puSelector.addItemListener(new PUSelectionListener());
gbc.gridx++;

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

gbc.ipadx = 10;
topPanel.add(puSelector = new XComboBox(), gbc);
puSelector.addItemListener(new PUSelectionListener());
gbc.gridx++;

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

gbc.ipadx = 10;
topPanel.add(puSelector = new XComboBox(), gbc);
puSelector.addItemListener(new PUSelectionListener());
gbc.gridx++;

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