10 * 11 * This code is distributed in the hope that it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 * version 2 for more details (a copy is included in the LICENSE file that 15 * accompanied this code). 16 * 17 * You should have received a copy of the GNU General Public License version 18 * 2 along with this work; if not, write to the Free Software Foundation, 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 * 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 */ 25 26 package java.awt.peer; 27 28 import java.awt.*; 29 30 import java.awt.image.BufferedImage; 31 32 /** 33 * The peer interface for {@link Window}. 34 * 35 * The peer interfaces are intended only for use in porting 36 * the AWT. They are not intended for use by application 37 * developers, and developers should not implement peers 38 * nor invoke any of the peer methods directly on the peer 39 * instances. 40 */ 41 public interface WindowPeer extends ContainerPeer { 42 43 /** 44 * Makes this window the topmost window on the desktop. 45 * 46 * @see Window#toFront() 47 */ 48 void toFront(); 49 50 /** 51 * Makes this window the bottommost window on the desktop. | 10 * 11 * This code is distributed in the hope that it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 14 * version 2 for more details (a copy is included in the LICENSE file that 15 * accompanied this code). 16 * 17 * You should have received a copy of the GNU General Public License version 18 * 2 along with this work; if not, write to the Free Software Foundation, 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 * 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 * or visit www.oracle.com if you need additional information or have any 23 * questions. 24 */ 25 26 package java.awt.peer; 27 28 import java.awt.*; 29 30 /** 31 * The peer interface for {@link Window}. 32 * 33 * The peer interfaces are intended only for use in porting 34 * the AWT. They are not intended for use by application 35 * developers, and developers should not implement peers 36 * nor invoke any of the peer methods directly on the peer 37 * instances. 38 */ 39 public interface WindowPeer extends ContainerPeer { 40 41 /** 42 * Makes this window the topmost window on the desktop. 43 * 44 * @see Window#toFront() 45 */ 46 void toFront(); 47 48 /** 49 * Makes this window the bottommost window on the desktop. |