d652de50e7
some custom event to communicate a value to listeners. This is for that. CommandEvents are close, but are all dispatched using a single 'type' value, so a single handler must have a switch statement in it (unless you're a controller, which has magic to call the right method.) git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4606 542714f4-19e9-0310-aa3c-eee0fc999fb1
36 lines
644 B
ActionScript
36 lines
644 B
ActionScript
package com.threerings.util {
|
|
|
|
import flash.events.Event;
|
|
|
|
/**
|
|
* A handy event for simply dispatching a value associated with the event type.
|
|
*/
|
|
public class ValueEvent extends Event
|
|
{
|
|
/**
|
|
* Accessor: get the value.
|
|
*/
|
|
public function get value () :Object
|
|
{
|
|
return _value;
|
|
}
|
|
|
|
/**
|
|
* Construct the value event.
|
|
*/
|
|
public function ValueEvent (type :String, value :Object)
|
|
{
|
|
super(type);
|
|
_value = value;
|
|
}
|
|
|
|
override public function clone () :Event
|
|
{
|
|
return new ValueEvent(type, _value);
|
|
}
|
|
|
|
/** The value. */
|
|
protected var _value :Object;
|
|
}
|
|
}
|