DataSinkEvent
DataSink
DataSinkListener
Constructs a DataSinkEvent object for the specified DataSink. super(from); message = new String("");
super(from); message = new String("");
Constructs a DataSinkEvent object for the specified DataSink and reason string. super(from); message = new String(reason);
super(from); message = new String(reason);
Get the DataSink that posted this event. The returned DataSink has at least one active listener. (The addDataSinkListener method has been called on the DataSink).returnThe DataSink that posted this event. return (DataSink) getSource();
addDataSinkListener
return (DataSink) getSource();
Returns the String representation of this event's values. return getClass().getName() + "[source=" + getSource() + "] message: " + message;
return getClass().getName() + "[source=" + getSource() + "] message: " + message;