< prev index next >

src/java.desktop/macosx/classes/com/apple/eawt/ApplicationEvent.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2011, 2016, 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) 2011, 2017, 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
*** 23,38 **** * questions. */ package com.apple.eawt; import java.util.EventObject; /** * The class of events sent to the deprecated ApplicationListener callbacks. * ! * @deprecated replaced by {@link AboutHandler}, {@link PreferencesHandler}, {@link AppReOpenedListener}, {@link OpenFilesHandler}, {@link PrintFilesHandler}, {@link QuitHandler}, {@link MacQuitResponse} * @since 1.4 */ @Deprecated @SuppressWarnings("serial") // JDK implementation class public class ApplicationEvent extends EventObject { --- 23,44 ---- * questions. */ package com.apple.eawt; + import java.awt.desktop.AboutHandler; + import java.awt.desktop.AppReopenedListener; + import java.awt.desktop.OpenFilesHandler; + import java.awt.desktop.PreferencesHandler; + import java.awt.desktop.PrintFilesHandler; + import java.awt.desktop.QuitHandler; import java.util.EventObject; /** * The class of events sent to the deprecated ApplicationListener callbacks. * ! * @deprecated replaced by {@link AboutHandler}, {@link PreferencesHandler}, {@link AppReopenedListener}, {@link OpenFilesHandler}, {@link PrintFilesHandler}, {@link QuitHandler}, {@link MacQuitResponse} * @since 1.4 */ @Deprecated @SuppressWarnings("serial") // JDK implementation class public class ApplicationEvent extends EventObject {
< prev index next >