home *** CD-ROM | disk | FTP | other *** search
- import java.awt.Color;
- import java.awt.event.FocusAdapter;
- import java.awt.event.FocusEvent;
-
- class TextDrawPanel$FL extends FocusAdapter {
- // $FF: synthetic field
- private final TextDrawPanel this$0;
-
- TextDrawPanel$FL(TextDrawPanel 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();
- }
- }
-