251566b321
- Specify override first on overridden methods. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4170 542714f4-19e9-0310-aa3c-eee0fc999fb1
57 lines
1.4 KiB
ActionScript
57 lines
1.4 KiB
ActionScript
package com.threerings.presents.dobj {
|
|
|
|
import com.threerings.util.StringBuilder;
|
|
|
|
import com.threerings.io.ObjectInputStream;
|
|
import com.threerings.io.ObjectOutputStream;
|
|
|
|
/**
|
|
* A common parent class for all events that are associated with a name
|
|
* (in some cases a field name, in other cases just an identifying name).
|
|
*/
|
|
public /* abstract */ class NamedEvent extends DEvent
|
|
{
|
|
/**
|
|
* Constructs a new named event for the specified target object with
|
|
* the supplied attribute name.
|
|
*
|
|
* @param targetOid the object id of the object in question.
|
|
* @param name the name associated with this event.
|
|
*/
|
|
public function NamedEvent (targetOid :int, name :String)
|
|
{
|
|
super(targetOid);
|
|
_name = name;
|
|
}
|
|
|
|
/**
|
|
* Returns the name of the attribute to which this event pertains.
|
|
*/
|
|
public function getName () :String
|
|
{
|
|
return _name;
|
|
}
|
|
|
|
override protected function toStringBuf (buf :StringBuilder) :void
|
|
{
|
|
super.toStringBuf(buf);
|
|
buf.append(", name=", _name);
|
|
}
|
|
|
|
override public function writeObject (out :ObjectOutputStream) :void
|
|
{
|
|
super.writeObject(out);
|
|
out.writeField(_name);
|
|
}
|
|
|
|
override public function readObject (ins :ObjectInputStream) :void
|
|
{
|
|
super.readObject(ins);
|
|
_name = (ins.readField(String) as String);
|
|
}
|
|
|
|
/** The name of the event. */
|
|
protected var _name :String;
|
|
}
|
|
}
|