< prev index next >

src/java.desktop/macosx/classes/com/apple/eawt/ApplicationListener.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,55 **** * questions. */ package com.apple.eawt; import java.util.EventListener; /** * ApplicationEvents are deprecated. Use individual AppEvent listeners or handlers instead. * ! * @see Application#addAppEventListener(AppEventListener) * * @see AboutHandler * @see PreferencesHandler * @see OpenURIHandler * @see OpenFilesHandler * @see PrintFilesHandler * @see QuitHandler * ! * @see AppReOpenedListener * @see AppForegroundListener * @see AppHiddenListener * @see UserSessionListener * @see ScreenSleepListener * @see SystemSleepListener * * @since 1.4 ! * @deprecated replaced by {@link AboutHandler}, {@link PreferencesHandler}, {@link AppReOpenedListener}, {@link OpenFilesHandler}, {@link PrintFilesHandler}, {@link QuitHandler}, {@link MacQuitResponse} */ @SuppressWarnings("deprecation") @Deprecated public interface ApplicationListener extends EventListener { /** --- 23,68 ---- * questions. */ package com.apple.eawt; + import java.awt.desktop.AboutHandler; + import java.awt.desktop.AppForegroundListener; + import java.awt.desktop.AppHiddenListener; + import java.awt.desktop.AppReopenedListener; + import java.awt.desktop.OpenFilesHandler; + import java.awt.desktop.OpenURIHandler; + import java.awt.desktop.PreferencesHandler; + import java.awt.desktop.PrintFilesHandler; + import java.awt.desktop.QuitHandler; + import java.awt.desktop.ScreenSleepListener; + import java.awt.desktop.SystemEventListener; + import java.awt.desktop.SystemSleepListener; + import java.awt.desktop.UserSessionListener; import java.util.EventListener; /** * ApplicationEvents are deprecated. Use individual AppEvent listeners or handlers instead. * ! * @see Application#addAppEventListener(SystemEventListener) * * @see AboutHandler * @see PreferencesHandler * @see OpenURIHandler * @see OpenFilesHandler * @see PrintFilesHandler * @see QuitHandler * ! * @see AppReopenedListener * @see AppForegroundListener * @see AppHiddenListener * @see UserSessionListener * @see ScreenSleepListener * @see SystemSleepListener * * @since 1.4 ! * @deprecated replaced by {@link AboutHandler}, {@link PreferencesHandler}, {@link AppReopenedListener}, {@link OpenFilesHandler}, {@link PrintFilesHandler}, {@link QuitHandler}, {@link MacQuitResponse} */ @SuppressWarnings("deprecation") @Deprecated public interface ApplicationListener extends EventListener { /**
*** 144,153 **** * this will come when a user clicks on your application icon in the Dock. If there is any special code * that needs to run when your user clicks on your application icon in the Dock or when a Reopen Application * event is sent from another application, include that code as part of this handler. * * @param event the Reopen Application event ! * @deprecated use {@link AppReOpenedListener} */ @Deprecated public void handleReOpenApplication(ApplicationEvent event); } --- 157,166 ---- * this will come when a user clicks on your application icon in the Dock. If there is any special code * that needs to run when your user clicks on your application icon in the Dock or when a Reopen Application * event is sent from another application, include that code as part of this handler. * * @param event the Reopen Application event ! * @deprecated use {@link AppReopenedListener} */ @Deprecated public void handleReOpenApplication(ApplicationEvent event); }
< prev index next >