|
Secure iNet Factory | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
Implements methods for capturing events sourced from Fxp and Fxps classes.
Typicaly your application will implement this interface to capture the following events :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);
}
...
}
| Method Summary | |
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. |
| Method Detail |
public void fxpStart(FxpStartEvent ev)
ev - a FxpStartEventFxpStartEventpublic void fxpEnd(FxpEndEvent ev)
ev - a FxpEndEventFxpEndEventpublic void fxpFailed(FxpFailedEvent ev)
ev - a FxpFailedEventFxpFailedEvent
|
Secure iNet Factory | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||