public interface IRecordingComponentDelegate
IRecordingComponentContext
. The context issues commands to the delegate, and
the delegate issues events to the context.Modifier and Type | Method and Description |
---|---|
Object |
getProperty(String name)
Gets a runtime property of the delegate.
|
void |
messageReceived(Message message)
This method is invoked by the context when a message is sent to this delegate.
|
void |
setProperty(String name,
Object value)
Sets the value of a runtime property of the delegate.
|
void messageReceived(Message message)
message
- A message.Object getProperty(String name) throws UnsupportedPropertyException
name
- The property nameUnsupportedPropertyException
- If the delegate does not support the property
(either because it does not define such a property, or because the property is read
at an inappropriate time).void setProperty(String name, Object value) throws UnsupportedPropertyException
name
- The property nameUnsupportedPropertyException
- If the delegate does not support the property
(either because it does not define such a property, or because the property is set
at an inappropriate time).© Copyright IBM Corp. 2013. All rights reserved.