Commented out upstream methods for classes that will never use them.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4367 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -116,15 +116,81 @@ public class BodyObject extends ClientObject
|
|||||||
return username;
|
return username;
|
||||||
}
|
}
|
||||||
|
|
||||||
override public function writeObject (out :ObjectOutputStream) :void
|
// // AUTO-GENERATED: METHODS START
|
||||||
{
|
// /**
|
||||||
super.writeObject(out);
|
// * Requests that the <code>username</code> field be set to the
|
||||||
|
// * specified value. The local value will be updated immediately and an
|
||||||
out.writeObject(username);
|
// * event will be propagated through the system to notify all listeners
|
||||||
out.writeInt(location);
|
// * that the attribute did change. Proxied copies of this object (on
|
||||||
out.writeByte(status);
|
// * clients) will apply the value change when they received the
|
||||||
out.writeField(awayMessage);
|
// * attribute changed notification.
|
||||||
}
|
// */
|
||||||
|
// public function setUsername (value :Name) :void
|
||||||
|
// {
|
||||||
|
// var ovalue :Name = this.username;
|
||||||
|
// requestAttributeChange(
|
||||||
|
// USERNAME, value, ovalue);
|
||||||
|
// this.username = value;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// /**
|
||||||
|
// * Requests that the <code>location</code> field be set to the
|
||||||
|
// * specified value. The local value will be updated immediately and an
|
||||||
|
// * event will be propagated through the system to notify all listeners
|
||||||
|
// * that the attribute did change. Proxied copies of this object (on
|
||||||
|
// * clients) will apply the value change when they received the
|
||||||
|
// * attribute changed notification.
|
||||||
|
// */
|
||||||
|
// public function setLocation (value :int) :void
|
||||||
|
// {
|
||||||
|
// var ovalue :int = this.location;
|
||||||
|
// requestAttributeChange(
|
||||||
|
// LOCATION, value, ovalue);
|
||||||
|
// this.location = value;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// /**
|
||||||
|
// * Requests that the <code>status</code> field be set to the
|
||||||
|
// * specified value. The local value will be updated immediately and an
|
||||||
|
// * event will be propagated through the system to notify all listeners
|
||||||
|
// * that the attribute did change. Proxied copies of this object (on
|
||||||
|
// * clients) will apply the value change when they received the
|
||||||
|
// * attribute changed notification.
|
||||||
|
// */
|
||||||
|
// public function setStatus (value :int) :void
|
||||||
|
// {
|
||||||
|
// var ovalue :int = this.status;
|
||||||
|
// requestAttributeChange(
|
||||||
|
// STATUS, Byte.valueOf(value), Byte.valueOf(ovalue));
|
||||||
|
// this.status = value;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// /**
|
||||||
|
// * Requests that the <code>awayMessage</code> field be set to the
|
||||||
|
// * specified value. The local value will be updated immediately and an
|
||||||
|
// * event will be propagated through the system to notify all listeners
|
||||||
|
// * that the attribute did change. Proxied copies of this object (on
|
||||||
|
// * clients) will apply the value change when they received the
|
||||||
|
// * attribute changed notification.
|
||||||
|
// */
|
||||||
|
// public function setAwayMessage (value :String) :void
|
||||||
|
// {
|
||||||
|
// var ovalue :String = this.awayMessage;
|
||||||
|
// requestAttributeChange(
|
||||||
|
// AWAY_MESSAGE, value, ovalue);
|
||||||
|
// this.awayMessage = value;
|
||||||
|
// }
|
||||||
|
// // AUTO-GENERATED: METHODS END
|
||||||
|
//
|
||||||
|
// override public function writeObject (out :ObjectOutputStream) :void
|
||||||
|
// {
|
||||||
|
// super.writeObject(out);
|
||||||
|
//
|
||||||
|
// out.writeObject(username);
|
||||||
|
// out.writeInt(location);
|
||||||
|
// out.writeByte(status);
|
||||||
|
// out.writeField(awayMessage);
|
||||||
|
// }
|
||||||
|
|
||||||
override public function readObject (ins :ObjectInputStream) :void
|
override public function readObject (ins :ObjectInputStream) :void
|
||||||
{
|
{
|
||||||
@@ -135,71 +201,5 @@ public class BodyObject extends ClientObject
|
|||||||
status = ins.readByte();
|
status = ins.readByte();
|
||||||
awayMessage = (ins.readField(String) as String);
|
awayMessage = (ins.readField(String) as String);
|
||||||
}
|
}
|
||||||
|
|
||||||
// AUTO-GENERATED: METHODS START
|
|
||||||
/**
|
|
||||||
* Requests that the <code>username</code> field be set to the
|
|
||||||
* specified value. The local value will be updated immediately and an
|
|
||||||
* event will be propagated through the system to notify all listeners
|
|
||||||
* that the attribute did change. Proxied copies of this object (on
|
|
||||||
* clients) will apply the value change when they received the
|
|
||||||
* attribute changed notification.
|
|
||||||
*/
|
|
||||||
public function setUsername (value :Name) :void
|
|
||||||
{
|
|
||||||
var ovalue :Name = this.username;
|
|
||||||
requestAttributeChange(
|
|
||||||
USERNAME, value, ovalue);
|
|
||||||
this.username = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Requests that the <code>location</code> field be set to the
|
|
||||||
* specified value. The local value will be updated immediately and an
|
|
||||||
* event will be propagated through the system to notify all listeners
|
|
||||||
* that the attribute did change. Proxied copies of this object (on
|
|
||||||
* clients) will apply the value change when they received the
|
|
||||||
* attribute changed notification.
|
|
||||||
*/
|
|
||||||
public function setLocation (value :int) :void
|
|
||||||
{
|
|
||||||
var ovalue :int = this.location;
|
|
||||||
requestAttributeChange(
|
|
||||||
LOCATION, value, ovalue);
|
|
||||||
this.location = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Requests that the <code>status</code> field be set to the
|
|
||||||
* specified value. The local value will be updated immediately and an
|
|
||||||
* event will be propagated through the system to notify all listeners
|
|
||||||
* that the attribute did change. Proxied copies of this object (on
|
|
||||||
* clients) will apply the value change when they received the
|
|
||||||
* attribute changed notification.
|
|
||||||
*/
|
|
||||||
public function setStatus (value :int) :void
|
|
||||||
{
|
|
||||||
var ovalue :int = this.status;
|
|
||||||
requestAttributeChange(
|
|
||||||
STATUS, Byte.valueOf(value), Byte.valueOf(ovalue));
|
|
||||||
this.status = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Requests that the <code>awayMessage</code> field be set to the
|
|
||||||
* specified value. The local value will be updated immediately and an
|
|
||||||
* event will be propagated through the system to notify all listeners
|
|
||||||
* that the attribute did change. Proxied copies of this object (on
|
|
||||||
* clients) will apply the value change when they received the
|
|
||||||
* attribute changed notification.
|
|
||||||
*/
|
|
||||||
public function setAwayMessage (value :String) :void
|
|
||||||
{
|
|
||||||
var ovalue :String = this.awayMessage;
|
|
||||||
requestAttributeChange(
|
|
||||||
AWAY_MESSAGE, value, ovalue);
|
|
||||||
this.awayMessage = value;
|
|
||||||
}
|
|
||||||
// AUTO-GENERATED: METHODS END
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -94,98 +94,98 @@ public class PlaceObject extends DObject
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// AUTO-GENERATED: METHODS START
|
// // AUTO-GENERATED: METHODS START
|
||||||
/**
|
// /**
|
||||||
* Requests that <code>oid</code> be added to the <code>occupants</code>
|
// * Requests that <code>oid</code> be added to the <code>occupants</code>
|
||||||
* oid list. The list will not change until the event is actually
|
// * oid list. The list will not change until the event is actually
|
||||||
* propagated through the system.
|
// * propagated through the system.
|
||||||
*/
|
// */
|
||||||
public function addToOccupants (oid :int) :void
|
// public function addToOccupants (oid :int) :void
|
||||||
{
|
// {
|
||||||
requestOidAdd(OCCUPANTS, oid);
|
// requestOidAdd(OCCUPANTS, oid);
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
/**
|
// /**
|
||||||
* Requests that <code>oid</code> be removed from the
|
// * Requests that <code>oid</code> be removed from the
|
||||||
* <code>occupants</code> oid list. The list will not change until the
|
// * <code>occupants</code> oid list. The list will not change until the
|
||||||
* event is actually propagated through the system.
|
// * event is actually propagated through the system.
|
||||||
*/
|
// */
|
||||||
public function removeFromOccupants (oid :int) :void
|
// public function removeFromOccupants (oid :int) :void
|
||||||
{
|
// {
|
||||||
requestOidRemove(OCCUPANTS, oid);
|
// requestOidRemove(OCCUPANTS, oid);
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
/**
|
// /**
|
||||||
* Requests that the specified entry be added to the
|
// * Requests that the specified entry be added to the
|
||||||
* <code>occupantInfo</code> set. The set will not change until the event is
|
// * <code>occupantInfo</code> set. The set will not change until the event is
|
||||||
* actually propagated through the system.
|
// * actually propagated through the system.
|
||||||
*/
|
// */
|
||||||
public function addToOccupantInfo (elem :DSet_Entry) :void
|
// public function addToOccupantInfo (elem :DSet_Entry) :void
|
||||||
{
|
// {
|
||||||
requestEntryAdd(OCCUPANT_INFO, elem);
|
// requestEntryAdd(OCCUPANT_INFO, elem);
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
/**
|
// /**
|
||||||
* Requests that the entry matching the supplied key be removed from
|
// * Requests that the entry matching the supplied key be removed from
|
||||||
* the <code>occupantInfo</code> set. The set will not change until the
|
// * the <code>occupantInfo</code> set. The set will not change until the
|
||||||
* event is actually propagated through the system.
|
// * event is actually propagated through the system.
|
||||||
*/
|
// */
|
||||||
public function removeFromOccupantInfo (key :Object) :void
|
// public function removeFromOccupantInfo (key :Object) :void
|
||||||
{
|
// {
|
||||||
requestEntryRemove(OCCUPANT_INFO, key);
|
// requestEntryRemove(OCCUPANT_INFO, key);
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
/**
|
// /**
|
||||||
* Requests that the specified entry be updated in the
|
// * Requests that the specified entry be updated in the
|
||||||
* <code>occupantInfo</code> set. The set will not change until the event is
|
// * <code>occupantInfo</code> set. The set will not change until the event is
|
||||||
* actually propagated through the system.
|
// * actually propagated through the system.
|
||||||
*/
|
// */
|
||||||
public function updateOccupantInfo (elem :DSet_Entry) :void
|
// public function updateOccupantInfo (elem :DSet_Entry) :void
|
||||||
{
|
// {
|
||||||
requestEntryUpdate(OCCUPANT_INFO, elem);
|
// requestEntryUpdate(OCCUPANT_INFO, elem);
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
/**
|
// /**
|
||||||
* Requests that the <code>occupantInfo</code> field be set to the
|
// * Requests that the <code>occupantInfo</code> field be set to the
|
||||||
* specified value. Generally one only adds, updates and removes
|
// * specified value. Generally one only adds, updates and removes
|
||||||
* entries of a distributed set, but certain situations call for a
|
// * entries of a distributed set, but certain situations call for a
|
||||||
* complete replacement of the set value. The local value will be
|
// * complete replacement of the set value. The local value will be
|
||||||
* updated immediately and an event will be propagated through the
|
// * updated immediately and an event will be propagated through the
|
||||||
* system to notify all listeners that the attribute did
|
// * system to notify all listeners that the attribute did
|
||||||
* change. Proxied copies of this object (on clients) will apply the
|
// * change. Proxied copies of this object (on clients) will apply the
|
||||||
* value change when they received the attribute changed notification.
|
// * value change when they received the attribute changed notification.
|
||||||
*/
|
// */
|
||||||
public function setOccupantInfo (value :DSet) :void
|
// public function setOccupantInfo (value :DSet) :void
|
||||||
{
|
// {
|
||||||
requestAttributeChange(OCCUPANT_INFO, value, this.occupantInfo);
|
// requestAttributeChange(OCCUPANT_INFO, value, this.occupantInfo);
|
||||||
this.occupantInfo = (value == null) ? null : value;
|
// this.occupantInfo = (value == null) ? null : value;
|
||||||
}
|
// }
|
||||||
|
//
|
||||||
/**
|
// /**
|
||||||
* Requests that the <code>speakService</code> field be set to the
|
// * Requests that the <code>speakService</code> field be set to the
|
||||||
* specified value. The local value will be updated immediately and an
|
// * specified value. The local value will be updated immediately and an
|
||||||
* event will be propagated through the system to notify all listeners
|
// * event will be propagated through the system to notify all listeners
|
||||||
* that the attribute did change. Proxied copies of this object (on
|
// * that the attribute did change. Proxied copies of this object (on
|
||||||
* clients) will apply the value change when they received the
|
// * clients) will apply the value change when they received the
|
||||||
* attribute changed notification.
|
// * attribute changed notification.
|
||||||
*/
|
// */
|
||||||
public function setSpeakService (value :SpeakMarshaller) :void
|
// public function setSpeakService (value :SpeakMarshaller) :void
|
||||||
{
|
// {
|
||||||
var ovalue :SpeakMarshaller = this.speakService;
|
// var ovalue :SpeakMarshaller = this.speakService;
|
||||||
requestAttributeChange(
|
// requestAttributeChange(
|
||||||
SPEAK_SERVICE, value, ovalue);
|
// SPEAK_SERVICE, value, ovalue);
|
||||||
this.speakService = value;
|
// this.speakService = value;
|
||||||
}
|
// }
|
||||||
// AUTO-GENERATED: METHODS END
|
// // AUTO-GENERATED: METHODS END
|
||||||
|
//
|
||||||
// documentation inherited
|
// // documentation inherited
|
||||||
override public function writeObject (out :ObjectOutputStream) :void
|
// override public function writeObject (out :ObjectOutputStream) :void
|
||||||
{
|
// {
|
||||||
super.writeObject(out);
|
// super.writeObject(out);
|
||||||
out.writeObject(occupants);
|
// out.writeObject(occupants);
|
||||||
out.writeObject(occupantInfo);
|
// out.writeObject(occupantInfo);
|
||||||
out.writeObject(speakService);
|
// out.writeObject(speakService);
|
||||||
}
|
// }
|
||||||
|
|
||||||
// documentation inherited
|
// documentation inherited
|
||||||
override public function readObject (ins :ObjectInputStream) :void
|
override public function readObject (ins :ObjectInputStream) :void
|
||||||
|
|||||||
@@ -59,18 +59,6 @@ public class ClientObject extends DObject
|
|||||||
return "(" + getOid() + ")";
|
return "(" + getOid() + ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
override public function writeObject (out :ObjectOutputStream) :void
|
|
||||||
{
|
|
||||||
super.writeObject(out);
|
|
||||||
out.writeObject(receivers);
|
|
||||||
}
|
|
||||||
|
|
||||||
override public function readObject (ins :ObjectInputStream) :void
|
|
||||||
{
|
|
||||||
super.readObject(ins);
|
|
||||||
receivers = (ins.readObject() as DSet);
|
|
||||||
}
|
|
||||||
|
|
||||||
// AUTO-GENERATED: METHODS START
|
// AUTO-GENERATED: METHODS START
|
||||||
public function addToReceivers (elem :DSet_Entry) :void
|
public function addToReceivers (elem :DSet_Entry) :void
|
||||||
{
|
{
|
||||||
@@ -94,5 +82,17 @@ public class ClientObject extends DObject
|
|||||||
: (ObjectUtil.copy(value) as DSet);
|
: (ObjectUtil.copy(value) as DSet);
|
||||||
}
|
}
|
||||||
// AUTO-GENERATED: METHODS END
|
// AUTO-GENERATED: METHODS END
|
||||||
|
|
||||||
|
// override public function writeObject (out :ObjectOutputStream) :void
|
||||||
|
// {
|
||||||
|
// super.writeObject(out);
|
||||||
|
// out.writeObject(receivers);
|
||||||
|
// }
|
||||||
|
|
||||||
|
override public function readObject (ins :ObjectInputStream) :void
|
||||||
|
{
|
||||||
|
super.readObject(ins);
|
||||||
|
receivers = (ins.readObject() as DSet);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -264,9 +264,10 @@ public class DObject // extends EventDispatcher
|
|||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited from interface Streamable
|
// documentation inherited from interface Streamable
|
||||||
public function writeObject (out :ObjectOutputStream) :void
|
public final function writeObject (out :ObjectOutputStream) :void
|
||||||
{
|
{
|
||||||
out.writeInt(_oid);
|
throw new Error();
|
||||||
|
// out.writeInt(_oid);
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited from interface Streamable
|
// documentation inherited from interface Streamable
|
||||||
|
|||||||
@@ -14,12 +14,12 @@ public class AuthResponseData extends DObject
|
|||||||
* why the authentication failed. */
|
* why the authentication failed. */
|
||||||
public var code :String;
|
public var code :String;
|
||||||
|
|
||||||
// documentation inherited
|
// // documentation inherited
|
||||||
override public function writeObject (out :ObjectOutputStream) :void
|
// override public function writeObject (out :ObjectOutputStream) :void
|
||||||
{
|
// {
|
||||||
super.writeObject(out);
|
// super.writeObject(out);
|
||||||
out.writeField(code);
|
// out.writeField(code);
|
||||||
}
|
// }
|
||||||
|
|
||||||
// documentation inherited
|
// documentation inherited
|
||||||
override public function readObject (ins :ObjectInputStream) :void
|
override public function readObject (ins :ObjectInputStream) :void
|
||||||
|
|||||||
Reference in New Issue
Block a user