Index Topic Contents | |||
Previous Topic: TupleBvr Class Next Topic: Vector2Bvr Class |
UntilNotifier Interface
public interface UntilNotifier extends java.lang.Object{ public abstract Behavior notify(Object eventData, Behavior previous, BvrsToRun extraBvrsToRun); }Represents the event notifier used to generate a replacement behavior for a behavior created using a untilNotify method.
UntilNotifier Methods
UntilNotifier Interface
notifyCreates a behavior in response to an event. This method is called when the event specified in a call to a untilNotify method occurs. The eventData and previous parameters specify the state of the event and the initial behavior, and can be used to determine how to create the new behavior.
public Behavior notify(
Object eventData,
Behavior previous,
BvrsToRun extraBvrsToRun
);Parameters
- eventData
- An object that contains any data produced by the event itself.
- previous
- A Behavior object that represents the running behavior from which the application is transitioning.
- extraBvrsToRun
- Behaviors that are not a part of the model.
Return Values
Returns the Behavior object.
See Also
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.