com.puppycrawl.tools.checkstyle.gui
Interface FileDrop.Listener
public static interface FileDrop.Listener
Implement this inner interface to listen for when files are dropped. For example
your class declaration may begin like this:
public class MyClass implements FileDrop.Listener
...
public void filesDropped( File[] files )
{
...
} // end filesDropped
...
void | filesDropped(File[] files) - This method is called when files have been successfully dropped.
|
filesDropped
public void filesDropped(File[] files)
This method is called when files have been successfully dropped.
files
- An array of Files that were dropped.