Browse Source
* commit '038d141b069769b37bcc899bd07dd73ac41a88dd': 国际化 REPORT-3813 [9.0一轮回归]单元格属性内容提示设置无效master
richie
7 years ago
27 changed files with 186 additions and 103 deletions
@ -0,0 +1,47 @@ |
|||||||
|
package com.fr.design.gui.itextfield; |
||||||
|
|
||||||
|
import java.awt.event.FocusEvent; |
||||||
|
import java.awt.event.FocusListener; |
||||||
|
import javax.swing.text.Document; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* Created by ibm on 2017/8/16. |
||||||
|
*/ |
||||||
|
public class UIPropertyTextField extends UITextField{ |
||||||
|
|
||||||
|
public UIPropertyTextField() { |
||||||
|
super(); |
||||||
|
} |
||||||
|
|
||||||
|
public UIPropertyTextField(int columns) { |
||||||
|
super(columns); |
||||||
|
} |
||||||
|
|
||||||
|
public UIPropertyTextField(String text, int columns) { |
||||||
|
super(text, columns); |
||||||
|
} |
||||||
|
|
||||||
|
public UIPropertyTextField(String text) { |
||||||
|
super(text); |
||||||
|
} |
||||||
|
|
||||||
|
public UIPropertyTextField(Document doc, String text, int columns) { |
||||||
|
super(doc, text, columns); |
||||||
|
} |
||||||
|
|
||||||
|
protected void initListener() { |
||||||
|
if (shouldResponseChangeListener()) { |
||||||
|
addFocusListener(new FocusListener() { |
||||||
|
@Override |
||||||
|
public void focusGained(FocusEvent e) { |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void focusLost(FocusEvent e) { |
||||||
|
attributeChange(); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue