home *** CD-ROM | disk | FTP | other *** search
- package java.awt;
-
- import sun.awt.CausedFocusEvent;
-
- final class KeyboardFocusManager$LightweightFocusRequest {
- final Component component;
- final boolean temporary;
- final CausedFocusEvent.Cause cause;
-
- KeyboardFocusManager$LightweightFocusRequest(Component var1, boolean var2, CausedFocusEvent.Cause var3) {
- this.component = var1;
- this.temporary = var2;
- this.cause = var3;
- }
-
- public String toString() {
- return "LightweightFocusRequest[component=" + this.component + ",temporary=" + this.temporary + ", cause=" + this.cause + "]";
- }
- }
-