< prev index next >

src/java.desktop/share/classes/java/awt/desktop/QuitEvent.java

Print this page




  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.desktop;
  27 
  28 import java.awt.Desktop;
  29 import java.awt.GraphicsEnvironment;
  30 import java.awt.HeadlessException;
  31 
  32 /**
  33  * Event sent when the application is asked to quit.
  34  *
  35  * @see QuitHandler#handleQuitRequestWith(QuitEvent, QuitResponse)
  36  *
  37  * @since 9
  38  */
  39 public final class QuitEvent extends AppEvent {
  40 



  41     private static final long serialVersionUID = -256100795532403146L;
  42 
  43     /**
  44      * Constructs a {@code QuitEvent}.
  45      *
  46      * @throws HeadlessException if {@link GraphicsEnvironment#isHeadless()}
  47      *         returns {@code true}
  48      * @throws UnsupportedOperationException if Desktop API is not supported on
  49      *         the current platform
  50      * @see Desktop#isDesktopSupported()
  51      * @see java.awt.GraphicsEnvironment#isHeadless
  52      */
  53     public QuitEvent() {
  54     }
  55 }


  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.desktop;
  27 
  28 import java.awt.Desktop;
  29 import java.awt.GraphicsEnvironment;
  30 import java.awt.HeadlessException;
  31 
  32 /**
  33  * Event sent when the application is asked to quit.
  34  *
  35  * @see QuitHandler#handleQuitRequestWith(QuitEvent, QuitResponse)

  36  * @since 9
  37  */
  38 public final class QuitEvent extends AppEvent {
  39 
  40     /**
  41      * Use serialVersionUID from JDK 9 for interoperability.
  42      */
  43     private static final long serialVersionUID = -256100795532403146L;
  44 
  45     /**
  46      * Constructs a {@code QuitEvent}.
  47      *
  48      * @throws HeadlessException if {@link GraphicsEnvironment#isHeadless()}
  49      *         returns {@code true}
  50      * @throws UnsupportedOperationException if Desktop API is not supported on
  51      *         the current platform
  52      * @see Desktop#isDesktopSupported()
  53      * @see java.awt.GraphicsEnvironment#isHeadless
  54      */
  55     public QuitEvent() {
  56     }
  57 }
< prev index next >