本文整理匯總了Java中javax.swing.JTextArea.addFocusListener方法的典型用法代碼示例。如果您正苦於以下問題:Java JTextArea.addFocusListener方法的具體用法?Java JTextArea.addFocusListener怎麽用?Java JTextArea.addFocusListener使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類javax.swing.JTextArea
的用法示例。
在下文中一共展示了JTextArea.addFocusListener方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addTextArea
import javax.swing.JTextArea; //導入方法依賴的package包/類
public void addTextArea(
String name,
String label,
String theValue,
Color background) {
JLabel lbl = new JLabel(label + ": ");
lbl.setBackground(_background);
JTextArea textArea = new JTextArea(theValue, _height, _width);
textArea.setEditable(true);
textArea.setBackground(background);
QueryScrollPane textPane = new QueryScrollPane(textArea);
_addPair(name, lbl, textPane, textPane);
textArea.addFocusListener(new QueryFocusListener(name));
}
示例2: install
import javax.swing.JTextArea; //導入方法依賴的package包/類
public void install(JTextArea textArea) {
textArea.addCaretListener(this);
textArea.addComponentListener(this);
textArea.addFocusListener(this);
textArea.addKeyListener(this);
textArea.addMouseListener(this);
textArea.addMouseMotionListener(this);
}
示例3: AWTTextPane
import javax.swing.JTextArea; //導入方法依賴的package包/類
AWTTextPane(JTextArea jt, XWindow xwin, Container parent) {
super(jt);
this.xwin = xwin;
setDoubleBuffered(true);
jt.addFocusListener(this);
AWTAccessor.getComponentAccessor().setParent(this,parent);
setViewportBorder(new BevelBorder(false,SystemColor.controlDkShadow,SystemColor.controlLtHighlight) );
this.jtext = jt;
setFocusable(false);
addNotify();
}