本文整理匯總了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;
}