- Added TokenRing

- Specify override first on overridden methods.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4170 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-06-05 21:28:00 +00:00
parent a442646791
commit 251566b321
66 changed files with 301 additions and 193 deletions
@@ -84,7 +84,7 @@ public class InvocationNotificationEvent extends DEvent
/**
* Applies this attribute change to the object.
*/
public override function applyToObject (target :DObject) :Boolean
override public function applyToObject (target :DObject) :Boolean
//throws ObjectAccessException
{
// nothing to do here
@@ -92,13 +92,13 @@ public class InvocationNotificationEvent extends DEvent
}
// documentation inherited
protected override function notifyListener (listener :Object) :void
override protected function notifyListener (listener :Object) :void
{
// nothing to do here
}
// documentation inherited
protected override function toStringBuf (buf :StringBuilder) :void
override protected function toStringBuf (buf :StringBuilder) :void
{
buf.append("INOT:");
super.toStringBuf(buf);
@@ -108,7 +108,7 @@ public class InvocationNotificationEvent extends DEvent
}
// documentation inherited
public override function writeObject (out :ObjectOutputStream) :void
override public function writeObject (out :ObjectOutputStream) :void
{
super.writeObject(out);
out.writeShort(_receiverId);
@@ -117,7 +117,7 @@ public class InvocationNotificationEvent extends DEvent
}
// documentation inherited
public override function readObject (ins :ObjectInputStream) :void
override public function readObject (ins :ObjectInputStream) :void
{
super.readObject(ins);
_receiverId = ins.readShort();