< prev index next >

src/java.desktop/share/classes/java/awt/peer/ComponentPeer.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1995, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 25,40 **** package java.awt.peer; import java.awt.*; import java.awt.event.PaintEvent; import java.awt.image.ColorModel; import java.awt.image.ImageObserver; import java.awt.image.ImageProducer; import java.awt.image.VolatileImage; - import sun.awt.CausedFocusEvent; import sun.java2d.pipe.Region; /** * The peer interface for {@link Component}. This is the top level peer --- 25,40 ---- package java.awt.peer; import java.awt.*; import java.awt.event.PaintEvent; + import java.awt.event.FocusEvent.Cause; import java.awt.image.ColorModel; import java.awt.image.ImageObserver; import java.awt.image.ImageProducer; import java.awt.image.VolatileImage; import sun.java2d.pipe.Region; /** * The peer interface for {@link Component}. This is the top level peer
*** 341,351 **** * @return {@code true} if the focus change is guaranteed to be * granted, {@code false} otherwise */ boolean requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, ! CausedFocusEvent.Cause cause); /** * Returns {@code true} when the component takes part in the focus * traversal, {@code false} otherwise. * --- 341,351 ---- * @return {@code true} if the focus change is guaranteed to be * granted, {@code false} otherwise */ boolean requestFocus(Component lightweightChild, boolean temporary, boolean focusedWindowChangeAllowed, long time, ! Cause cause); /** * Returns {@code true} when the component takes part in the focus * traversal, {@code false} otherwise. *
< prev index next >