home *** CD-ROM | disk | FTP | other *** search
- import java.awt.Color;
- import java.awt.event.FocusEvent;
- import java.awt.event.FocusListener;
-
- class WTextArea$1 implements FocusListener {
- // $FF: synthetic field
- private final WTextArea this$0;
-
- WTextArea$1(WTextArea var1) {
- this.this$0 = var1;
- }
-
- public void focusGained(FocusEvent var1) {
- this.this$0.borderColor = Color.black;
- this.this$0.repaint();
- }
-
- public void focusLost(FocusEvent var1) {
- this.this$0.borderColor = this.this$0.background;
- this.this$0.repaint();
- }
- }
-