本文整理汇总了Java中javax.swing.JTree.addKeyListener方法的典型用法代码示例。如果您正苦于以下问题:Java JTree.addKeyListener方法的具体用法?Java JTree.addKeyListener怎么用?Java JTree.addKeyListener使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.JTree
的用法示例。
在下文中一共展示了JTree.addKeyListener方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: connect
import javax.swing.JTree; //导入方法依赖的package包/类
void connect( JTree errorTree, DefaultTreeModel errModel, JComboBox severityComboBox,
JCheckBox tasklistCheckBox, JPanel customizerPanel,
JEditorPane descriptionTextArea) {
this.errorTree = errorTree;
this.errModel = errModel;
this.severityComboBox = severityComboBox;
this.tasklistCheckBox = tasklistCheckBox;
this.customizerPanel = customizerPanel;
this.descriptionTextArea = descriptionTextArea;
valueChanged( null );
errorTree.addKeyListener(this);
errorTree.addMouseListener(this);
errorTree.getSelectionModel().addTreeSelectionListener(this);
severityComboBox.addActionListener(this);
tasklistCheckBox.addChangeListener(this);
}
示例2: connect
import javax.swing.JTree; //导入方法依赖的package包/类
void connect( JTree errorTree, JComboBox severityComboBox,
JCheckBox tasklistCheckBox, JPanel customizerPanel,
JEditorPane descriptionTextArea) {
this.errorTree = errorTree;
this.severityComboBox = severityComboBox;
this.tasklistCheckBox = tasklistCheckBox;
this.customizerPanel = customizerPanel;
this.descriptionTextArea = descriptionTextArea;
valueChanged( null );
errorTree.addKeyListener(this);
errorTree.addMouseListener(this);
errorTree.getSelectionModel().addTreeSelectionListener(this);
severityComboBox.addActionListener(this);
tasklistCheckBox.addChangeListener(this);
}
示例3: connect
import javax.swing.JTree; //导入方法依赖的package包/类
void connect( final JTree errorTree, DefaultTreeModel errorTreeModel, JLabel severityLabel, JComboBox severityComboBox,
JCheckBox tasklistCheckBox, JPanel customizerPanel,
JEditorPane descriptionTextArea, final JComboBox configCombo, JButton editScript,
HintsSettings settings, boolean direct) {
this.errorTree = errorTree;
this.errorTreeModel = errorTreeModel;
this.severityLabel = severityLabel;
this.severityComboBox = severityComboBox;
this.tasklistCheckBox = tasklistCheckBox;
this.customizerPanel = customizerPanel;
this.descriptionTextArea = descriptionTextArea;
this.configCombo = configCombo;
this.editScript = editScript;
this.direct = direct;
if (configCombo.getSelectedItem() !=null) {
originalSettings = ((Configuration) configCombo.getSelectedItem()).getSettings();
} else if (settings != null) {
originalSettings = settings;
} else {
originalSettings = HintsSettings.getGlobalSettings();
}
writableSettings = new WritableSettings(originalSettings, direct);
valueChanged( null );
errorTree.addKeyListener(this);
errorTree.addMouseListener(this);
errorTree.getSelectionModel().addTreeSelectionListener(this);
this.configCombo.addItemListener(this);
severityComboBox.addActionListener(this);
tasklistCheckBox.addChangeListener(this);
}