< prev index next >

modules/javafx.graphics/src/main/java/javafx/scene/input/DragEvent.java

Print this page

        

@@ -425,13 +425,13 @@
         return e;
     }
 
     /**
      * Creates a copy of the given drag event with the given fields substituted.
-     * @param source the new source of the copied event
-     * @param target the new target of the copied event
-     * @param eventType the new eventType
+     * @param source source of the copied event
+     * @param target target of the copied event
+     * @param type type of event
      * @return the event copy with the fields
      * @since JavaFX 8.0
      */
     public DragEvent copyFor(Object source, EventTarget target, EventType<DragEvent> type) {
         DragEvent e = (DragEvent) copyFor(source, target);
< prev index next >