public interface FxpListener
extends java.util.EventListener
FxpStartEventFxpEndEventFxpFailedEvent
In addition to implementing this interface your application should register
itself as an EventListener which may look somewhat like this:
public class Application ... implements FxpListener
{
...
public ... initMethod(...)
{
Fxp fxp = new Fxp();
fxp.addFxpListener(this);
}
...
}
| Modifier and Type | Method and Description |
|---|---|
void |
fxpEnd(FxpEndEvent ev)
Invoked when FXP transfer ends for a file.
|
void |
fxpFailed(FxpFailedEvent ev)
Invoked when FXP transfer fails for a file.
|
void |
fxpStart(FxpStartEvent ev)
Invoked when FXP transfer starts for a file.
|
void fxpStart(FxpStartEvent ev)
ev - a FxpStartEventFxpStartEventvoid fxpEnd(FxpEndEvent ev)
ev - a FxpEndEventFxpEndEventvoid fxpFailed(FxpFailedEvent ev)
ev - a FxpFailedEventFxpFailedEventCopyright © JSCAPE LLC. 1999-2023. All Rights Reserved