public void focusGained(FocusEvent e) {
//it will be the first focus gained event, so go select
//whatever matches the first character
processSearchText(((JTextField) e.getSource()).getText());
JRootPane root = getRootPane();
if (root != null) { // #57417 NPE
root.getLayeredPane().repaint();
}
setCaretPosition(getText().length());
}
BaseTable.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:incubator-netbeans
作者:
评论列表
文章目录