001package jmri.util.iharder.dnd; 002 003/** 004 * When using the FileDrop package in its JavaBean form, this listener will 005 * receive events when files are dropped onto registered targets. 006 * <p> 007 * I'm releasing this code into the Public Domain. Enjoy. 008 * <p> 009 * <em>Original author: Robert Harder, rharder@usa.net</em> 010 * 011 * @author Robert Harder 012 * @author rharder@usa.net 013 * @version 1.1 014 */ 015public interface URIDropListener extends java.util.EventListener { 016 017 /** 018 * Fired by the source when files are dropped onto a drop target. 019 * 020 * @param evt The {@link URIDropEvent} associated with this event 021 * @since 1.1 022 */ 023 void urisDropped(URIDropEvent evt); 024 025} // end interface FileDropListener