home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / awt / KeyboardFocusManager$LightweightFocusRequest.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  964 b   |  20 lines

  1. package java.awt;
  2.  
  3. import sun.awt.CausedFocusEvent;
  4.  
  5. final class KeyboardFocusManager$LightweightFocusRequest {
  6.    final Component component;
  7.    final boolean temporary;
  8.    final CausedFocusEvent.Cause cause;
  9.  
  10.    KeyboardFocusManager$LightweightFocusRequest(Component var1, boolean var2, CausedFocusEvent.Cause var3) {
  11.       this.component = var1;
  12.       this.temporary = var2;
  13.       this.cause = var3;
  14.    }
  15.  
  16.    public String toString() {
  17.       return "LightweightFocusRequest[component=" + this.component + ",temporary=" + this.temporary + ", cause=" + this.cause + "]";
  18.    }
  19. }
  20.