< prev index next >

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

Print this page

        

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2018, 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,20 +23,22 @@
  * questions.
  */
 
 package java.awt.desktop;
 
-
 /**
- * An implementor is notified when the application is asked to open a list of files.
- *
- * @see java.awt.Desktop#setOpenFileHandler(java.awt.desktop.OpenFilesHandler)
+ * An implementor is notified when the application is asked to open a list of
+ * files.
  *
+ * @see java.awt.Desktop#setOpenFileHandler(OpenFilesHandler)
  * @since 9
  */
 public interface OpenFilesHandler {
+
     /**
      * Called when the application is asked to open a list of files.
-     * @param e the request to open a list of files, and the search term used to find them, if any.
+     *
+     * @param  e the request to open a list of files, and the search term used
+     *         to find them, if any
      */
-    public void openFiles(final OpenFilesEvent e);
+    public void openFiles(OpenFilesEvent e);
 }
< prev index next >