本文整理匯總了Java中javax.swing.JComponent.addFocusListener方法的典型用法代碼示例。如果您正苦於以下問題:Java JComponent.addFocusListener方法的具體用法?Java JComponent.addFocusListener怎麽用?Java JComponent.addFocusListener使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.JComponent
的用法示例。
在下文中一共展示了JComponent.addFocusListener方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addBorderSetter
import javax.swing.JComponent; //導入方法依賴的package包/類
private void addBorderSetter(final JComponent s) {
if (s instanceof JTextField || s instanceof JSlider || s instanceof JComboBox || s instanceof AbstractButton) {
s.setFocusable(true);// sliders and combo boxes not normally focusable
s.addFocusListener(this);
// log.info("added border setter for "+s.getClass().getSimpleName());
} else if (s instanceof Container) {
Component[] components = s.getComponents();
for (Component c : components) {
// log.info("possibly adding border setter for "+c.getClass().getSimpleName());
if (c instanceof JComponent) {
addBorderSetter((JComponent) c);
}
}
}
}
示例2: RepoSelectorPanel
import javax.swing.JComponent; //導入方法依賴的package包/類
RepoSelectorPanel(JComponent repoSelector,
JComponent newRepoButton) {
super(null);
JLabel repoSelectorLabel = new JLabel();
repoSelectorLabel.setLabelFor(repoSelector);
repoSelectorLabel.setFocusCycleRoot(true);
Mnemonics.setLocalizedText(
repoSelectorLabel,
NbBundle.getMessage(getClass(),
"QueryTopComponent.repoLabel.text"));//NOI18N
setOpaque(false);
newRepoButton.addFocusListener(this);
repoSelector.addFocusListener(this);
GroupLayout layout;
setLayout(layout = new GroupLayout(this));
layout.setHorizontalGroup(
layout.createSequentialGroup()
.addComponent(repoSelectorLabel)
.addPreferredGap(RELATED)
.addComponent(repoSelector)
.addPreferredGap(RELATED)
.addComponent(newRepoButton));
layout.setVerticalGroup(
layout.createParallelGroup(BASELINE)
.addComponent(repoSelectorLabel)
.addComponent(repoSelector, DEFAULT_SIZE,
DEFAULT_SIZE,
PREFERRED_SIZE)
.addComponent(newRepoButton));
}
示例3: registerDefaultButton
import javax.swing.JComponent; //導入方法依賴的package包/類
public void registerDefaultButton(JComponent comp, JButton button) {
comp.addFocusListener(new MyListener(button));
}