Interface FileSelectorListener
- All Known Implementing Classes:
TfFileSelectorListener
public interface FileSelectorListener
The listener interface for receiving fileSelector events. The class that is interested in
processing a fileSelector event implements this interface, and the object created with that class
is registered with a component using the component's
addFileSelectorListener
method.
When the fileSelector event occurs, that object's appropriate method is invoked.
// * @see FileSelectorEvent-
Method Summary
Modifier and TypeMethodDescriptionboolean
fileSelected
(JComponent source, String fileString) File selected.
-
Method Details
-
fileSelected
File selected.- Parameters:
source
- the sourcefileString
- the file string- Returns:
- true, if successful
-