Regenerated DObject definitions with new policy.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2514 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: BodyObject.java,v 1.5 2002/10/30 00:42:37 mdb Exp $
|
||||
// $Id: BodyObject.java,v 1.6 2003/04/30 22:45:57 mdb Exp $
|
||||
|
||||
package com.threerings.crowd.data;
|
||||
|
||||
@@ -59,8 +59,8 @@ public class BodyObject extends ClientObject
|
||||
*/
|
||||
public void setUsername (String username)
|
||||
{
|
||||
this.username = username;
|
||||
requestAttributeChange(USERNAME, username);
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -73,8 +73,8 @@ public class BodyObject extends ClientObject
|
||||
*/
|
||||
public void setLocation (int location)
|
||||
{
|
||||
this.location = location;
|
||||
requestAttributeChange(LOCATION, new Integer(location));
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -87,7 +87,7 @@ public class BodyObject extends ClientObject
|
||||
*/
|
||||
public void setStatus (byte status)
|
||||
{
|
||||
this.status = status;
|
||||
requestAttributeChange(STATUS, new Byte(status));
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: PlaceObject.java,v 1.10 2003/02/26 17:54:55 mdb Exp $
|
||||
// $Id: PlaceObject.java,v 1.11 2003/04/30 22:45:57 mdb Exp $
|
||||
|
||||
package com.threerings.crowd.data;
|
||||
|
||||
@@ -124,8 +124,8 @@ public class PlaceObject extends DObject
|
||||
*/
|
||||
public void setOccupantInfo (DSet occupantInfo)
|
||||
{
|
||||
this.occupantInfo = occupantInfo;
|
||||
requestAttributeChange(OCCUPANT_INFO, occupantInfo);
|
||||
this.occupantInfo = occupantInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -138,7 +138,7 @@ public class PlaceObject extends DObject
|
||||
*/
|
||||
public void setSpeakService (SpeakMarshaller speakService)
|
||||
{
|
||||
this.speakService = speakService;
|
||||
requestAttributeChange(SPEAK_SERVICE, speakService);
|
||||
this.speakService = speakService;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TableLobbyObject.java,v 1.6 2003/02/26 17:54:56 mdb Exp $
|
||||
// $Id: TableLobbyObject.java,v 1.7 2003/04/30 22:45:57 mdb Exp $
|
||||
|
||||
package com.threerings.micasa.lobby.table;
|
||||
|
||||
@@ -83,7 +83,7 @@ public class TableLobbyObject
|
||||
*/
|
||||
public void setTableSet (DSet tableSet)
|
||||
{
|
||||
this.tableSet = tableSet;
|
||||
requestAttributeChange(TABLE_SET, tableSet);
|
||||
this.tableSet = tableSet;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: GameObject.java,v 1.14 2003/01/13 18:36:18 mdb Exp $
|
||||
// $Id: GameObject.java,v 1.15 2003/04/30 22:45:57 mdb Exp $
|
||||
|
||||
package com.threerings.parlor.game;
|
||||
|
||||
@@ -183,8 +183,8 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setGameService (GameMarshaller gameService)
|
||||
{
|
||||
this.gameService = gameService;
|
||||
requestAttributeChange(GAME_SERVICE, gameService);
|
||||
this.gameService = gameService;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -197,8 +197,8 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setState (int state)
|
||||
{
|
||||
this.state = state;
|
||||
requestAttributeChange(STATE, new Integer(state));
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -211,8 +211,8 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setIsRated (boolean isRated)
|
||||
{
|
||||
this.isRated = isRated;
|
||||
requestAttributeChange(IS_RATED, new Boolean(isRated));
|
||||
this.isRated = isRated;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -225,8 +225,8 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setPlayers (String[] players)
|
||||
{
|
||||
this.players = players;
|
||||
requestAttributeChange(PLAYERS, players);
|
||||
this.players = players;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -239,8 +239,8 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setPlayersAt (String value, int index)
|
||||
{
|
||||
this.players[index] = value;
|
||||
requestElementUpdate(PLAYERS, value, index);
|
||||
this.players[index] = value;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -253,8 +253,8 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setWinners (boolean[] winners)
|
||||
{
|
||||
this.winners = winners;
|
||||
requestAttributeChange(WINNERS, winners);
|
||||
this.winners = winners;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -267,8 +267,8 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setWinnersAt (boolean value, int index)
|
||||
{
|
||||
this.winners[index] = value;
|
||||
requestElementUpdate(WINNERS, new Boolean(value), index);
|
||||
this.winners[index] = value;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -281,8 +281,8 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setRoundId (int roundId)
|
||||
{
|
||||
this.roundId = roundId;
|
||||
requestAttributeChange(ROUND_ID, new Integer(roundId));
|
||||
this.roundId = roundId;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -295,7 +295,7 @@ public class GameObject extends PlaceObject
|
||||
*/
|
||||
public void setCreator (int creator)
|
||||
{
|
||||
this.creator = creator;
|
||||
requestAttributeChange(CREATOR, new Integer(creator));
|
||||
this.creator = creator;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: ClientObject.java,v 1.6 2003/02/26 17:54:56 mdb Exp $
|
||||
// $Id: ClientObject.java,v 1.7 2003/04/30 22:45:57 mdb Exp $
|
||||
|
||||
package com.threerings.presents.data;
|
||||
|
||||
@@ -105,7 +105,7 @@ public class ClientObject extends DObject
|
||||
*/
|
||||
public void setReceivers (DSet receivers)
|
||||
{
|
||||
this.receivers = receivers;
|
||||
requestAttributeChange(RECEIVERS, receivers);
|
||||
this.receivers = receivers;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: TimeBaseObject.java,v 1.1 2002/05/28 23:14:06 mdb Exp $
|
||||
// $Id: TimeBaseObject.java,v 1.2 2003/04/30 22:45:57 mdb Exp $
|
||||
|
||||
package com.threerings.presents.data;
|
||||
|
||||
@@ -118,8 +118,8 @@ public class TimeBaseObject extends DObject
|
||||
*/
|
||||
public void setEvenBase (long evenBase)
|
||||
{
|
||||
this.evenBase = evenBase;
|
||||
requestAttributeChange(EVEN_BASE, new Long(evenBase));
|
||||
this.evenBase = evenBase;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -132,7 +132,7 @@ public class TimeBaseObject extends DObject
|
||||
*/
|
||||
public void setOddBase (long oddBase)
|
||||
{
|
||||
this.oddBase = oddBase;
|
||||
requestAttributeChange(ODD_BASE, new Long(oddBase));
|
||||
this.oddBase = oddBase;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: SpotSceneObject.java,v 1.3 2003/02/26 17:54:56 mdb Exp $
|
||||
// $Id: SpotSceneObject.java,v 1.4 2003/04/30 22:45:57 mdb Exp $
|
||||
|
||||
package com.threerings.whirled.spot.data;
|
||||
|
||||
@@ -66,8 +66,8 @@ public class SpotSceneObject extends SceneObject
|
||||
*/
|
||||
public void setOccupantLocs (DSet occupantLocs)
|
||||
{
|
||||
this.occupantLocs = occupantLocs;
|
||||
requestAttributeChange(OCCUPANT_LOCS, occupantLocs);
|
||||
this.occupantLocs = occupantLocs;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -112,7 +112,7 @@ public class SpotSceneObject extends SceneObject
|
||||
*/
|
||||
public void setClusters (DSet clusters)
|
||||
{
|
||||
this.clusters = clusters;
|
||||
requestAttributeChange(CLUSTERS, clusters);
|
||||
this.clusters = clusters;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user