コード例 #1
0
ファイル: GenericDialog.java プロジェクト: aschain/ImageJA
 public void focusLost(FocusEvent e) {
   Component c = e.getComponent();
   if (c instanceof TextField) ((TextField) c).select(0, 0);
 }
コード例 #2
0
ファイル: GenericDialog.java プロジェクト: aschain/ImageJA
 public void focusGained(FocusEvent e) {
   Component c = e.getComponent();
   if (c instanceof TextField) ((TextField) c).selectAll();
 }