当前位置: 首页>>代码示例>>Java>>正文


Java JButton.getClientProperty方法代码示例

本文整理汇总了Java中javax.swing.JButton.getClientProperty方法的典型用法代码示例。如果您正苦于以下问题:Java JButton.getClientProperty方法的具体用法?Java JButton.getClientProperty怎么用?Java JButton.getClientProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.swing.JButton的用法示例。


在下文中一共展示了JButton.getClientProperty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: actionPerformed

import javax.swing.JButton; //导入方法依赖的package包/类
@Override
public void actionPerformed(ActionEvent event) {
    JButton btn = (JButton) event.getSource();
    String pressedKey = (String) btn.getClientProperty("key");

    if (CAPS.equals(pressedKey)) {
        for (JButton button : buttons) {
            String text = button.getText();
            text = caps ? text.toLowerCase() : text.toUpperCase();
            button.setText(text);
        }
        caps = !caps;
        return;
    }

    if (BACKSPACE.equals(pressedKey)) {
        if (password.length() > 0) {
            password = password.substring(0, password.length() - 1);
        }
    } else if (CLEAR.equals(pressedKey)) {
        password = "";
    } else {
        password += btn.getText();
    }
    passwordField.setText(password);
}
 
开发者ID:xipki,项目名称:xitk,代码行数:27,代码来源:SecurePasswordInputPanel.java

示例2: actionPerformed

import javax.swing.JButton; //导入方法依赖的package包/类
/**
 * Action listener method for buttons and node set chooser
 */
public void actionPerformed(ActionEvent e) {
	if (e.getSource() instanceof JButton) {
		JButton source = (JButton)e.getSource();
		DTNHost host = (DTNHost)source.getClientProperty(HOST_KEY);
		gui.setFocus(host);
	}
	else if (e.getSource() == groupChooser) {
		setNodes(groupChooser.getSelectedIndex() * MAX_NODE_COUNT);
	}
}
 
开发者ID:mdonnyk,项目名称:the-one-mdonnyk,代码行数:14,代码来源:NodeChooser.java

示例3: actionPerformed

import javax.swing.JButton; //导入方法依赖的package包/类
/**
 * Action listener for log entry (host & message) buttons
 */
public void actionPerformed(ActionEvent e) {
	JButton source = (JButton)e.getSource();
	
	if (source.getClientProperty(HOST_PROP) != null) {
		// button was a host button -> focus it on GUI
		gui.setFocus((DTNHost)source.getClientProperty(HOST_PROP));
	}
	else if (source.getClientProperty(MSG_PROP) != null) {
		// was a message button -> show information about the message
		Message m = (Message)source.getClientProperty(MSG_PROP);
		gui.getInfoPanel().showInfo(m);
	}
}
 
开发者ID:mdonnyk,项目名称:the-one-mdonnyk,代码行数:17,代码来源:EventLogPanel.java


注:本文中的javax.swing.JButton.getClientProperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。