net.bioclipse.xws.client.listeners
Interface ISimpleProcessListener


public interface ISimpleProcessListener


Method Summary
 void onError(IProcess p, XwsException error)
          A process specific error occurred.
 void onIqError(IProcess p, XmppException error)
          A XMPP specific error occurred.
 void onResult(IProcess p, org.w3c.dom.Element output)
          The result (output) was received.
 

Method Detail

onIqError

void onIqError(IProcess p,
               XmppException error)
A XMPP specific error occurred.

Parameters:
p - The associated process.
error - The error.

onError

void onError(IProcess p,
             XwsException error)
A process specific error occurred.

Parameters:
p - The associated process.
error - The error.

onResult

void onResult(IProcess p,
              org.w3c.dom.Element output)
The result (output) was received.

Parameters:
p - The associated process.
output - The output XML element as Element.