JIDLOutputListener
Declaration
public interface JIDLOutputListener
Description
The listener interface for receiving output events from IDL.
Both drawable (JIDLCanvas) and non-drawable (JIDLObject) wrapper objects may be listened to. However by default, JIDLObject and JIDLCanvas objects do NOT listen to their output events.
The class that is interested in receiving IDL output events on a particular object implements this interface. The listener object created from that class is registered with the JIDLObjectI using the addIDLOutputListener method. The listener is unregistered with the removeIDLOutputListener.
See Also:
JIDLCanvas, JIDLObject, JIDLObjectI
Member Summary
Methods
void
IDLoutput(JIDLObjectI obj, java.lang.String s)
An IDL output has occurred
Methods
IDLoutput(JIDLObjectI, String)
public void IDLoutput(com.idl.javaidl.JIDLObjectI obj, java.lang.String s)
An IDL output has occurred
Parameters:
obj - The JIDLObjectI in which the event occurred.