本文整理汇总了Java中javax.swing.JTextField.grabFocus方法的典型用法代码示例。如果您正苦于以下问题:Java JTextField.grabFocus方法的具体用法?Java JTextField.grabFocus怎么用?Java JTextField.grabFocus使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.JTextField
的用法示例。
在下文中一共展示了JTextField.grabFocus方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkAlphaNumeric
import javax.swing.JTextField; //导入方法依赖的package包/类
public static boolean checkAlphaNumeric(JTextField tf, String input) {
String text = tf.getText().trim();
if (text.length() == 0)
return true;
if (!StringUtils.isAlphanumeric(text)) {
JOptionPane.showMessageDialog(null, input + "ֻ����Ӣ�ĺ�������ɣ�����ֻ����ӦΪ��ͷ");
tf.grabFocus();
return false;
}
if (text.length() != 0 && !StringUtils.isAlpha(String.valueOf(text.charAt(0)))) {
JOptionPane.showMessageDialog(null, input + "ֻ����Ӣ�ĺ�������ɣ�����ֻ��Ӣ�Ŀ�ͷ");
tf.grabFocus();
return false;
}
return true;
}
示例2: startRename
import javax.swing.JTextField; //导入方法依赖的package包/类
private void startRename() {
// init the text box
final JTextField text = new JTextField();
text.setText(m_reference.getNamableName());
text.setPreferredSize(new Dimension(360, text.getPreferredSize().height));
text.addKeyListener(new KeyAdapter() {
@Override
public void keyPressed(KeyEvent event) {
switch (event.getKeyCode()) {
case KeyEvent.VK_ENTER:
finishRename(text, true);
break;
case KeyEvent.VK_ESCAPE:
finishRename(text, false);
break;
}
}
});
// find the label with the name and replace it with the text box
JPanel panel = (JPanel)m_infoPanel.getComponent(0);
panel.remove(panel.getComponentCount() - 1);
panel.add(text);
text.grabFocus();
text.selectAll();
redraw();
}
示例3: checkNumber
import javax.swing.JTextField; //导入方法依赖的package包/类
public static boolean checkNumber(JTextField tf, String input) {
if (!checkEmpty(tf, input))
return false;
String text = tf.getText().trim();
try {
Integer.parseInt(text);
return true;
} catch (NumberFormatException e1) {
JOptionPane.showMessageDialog(null, input + " ��Ҫ������");
tf.grabFocus();
return false;
}
}
示例4: checkZero
import javax.swing.JTextField; //导入方法依赖的package包/类
public static boolean checkZero(JTextField tf, String input) {
if (!checkNumber(tf, input))
return false;
String text = tf.getText().trim();
if (0 == Integer.parseInt(text)) {
JOptionPane.showMessageDialog(null, input + " ������");
tf.grabFocus();
return false;
}
return true;
}
示例5: checkEmpty
import javax.swing.JTextField; //导入方法依赖的package包/类
public static boolean checkEmpty(JTextField tf, String input) {
String text = tf.getText().trim();
if (0 == text.length()) {
JOptionPane.showMessageDialog(null, input + " ������");
tf.grabFocus();
return false;
}
return true;
}