Regenerated with non-NPEing code.Regenerated with non-NPEing code.Regenerated with non-NPEing code.Regenerated with non-NPEing code.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3300 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -179,7 +179,7 @@ public class PlaceObject extends DObject
|
||||
public void setOccupantInfo (DSet value)
|
||||
{
|
||||
requestAttributeChange(OCCUPANT_INFO, value, this.occupantInfo);
|
||||
this.occupantInfo = (DSet)value.clone();
|
||||
this.occupantInfo = (value == null) ? null : (DSet)value.clone();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -105,7 +105,7 @@ public class TableLobbyObject
|
||||
public void setTableSet (DSet value)
|
||||
{
|
||||
requestAttributeChange(TABLE_SET, value, this.tableSet);
|
||||
this.tableSet = (DSet)value.clone();
|
||||
this.tableSet = (value == null) ? null : (DSet)value.clone();
|
||||
}
|
||||
// AUTO-GENERATED: METHODS END
|
||||
}
|
||||
|
||||
@@ -265,7 +265,7 @@ public class GameObject extends PlaceObject
|
||||
Name[] ovalue = this.players;
|
||||
requestAttributeChange(
|
||||
PLAYERS, value, ovalue);
|
||||
this.players = (Name[])value.clone();
|
||||
this.players = (value == null) ? null : (Name[])value.clone();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -298,7 +298,7 @@ public class GameObject extends PlaceObject
|
||||
boolean[] ovalue = this.winners;
|
||||
requestAttributeChange(
|
||||
WINNERS, value, ovalue);
|
||||
this.winners = (boolean[])value.clone();
|
||||
this.winners = (value == null) ? null : (boolean[])value.clone();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -125,7 +125,7 @@ public class ClientObject extends DObject
|
||||
public void setReceivers (DSet value)
|
||||
{
|
||||
requestAttributeChange(RECEIVERS, value, this.receivers);
|
||||
this.receivers = (DSet)value.clone();
|
||||
this.receivers = (value == null) ? null : (DSet)value.clone();
|
||||
}
|
||||
// AUTO-GENERATED: METHODS END
|
||||
}
|
||||
|
||||
@@ -145,7 +145,7 @@ public class PuzzleObject extends GameObject
|
||||
int[] ovalue = this.playerStatus;
|
||||
requestAttributeChange(
|
||||
PLAYER_STATUS, value, ovalue);
|
||||
this.playerStatus = (int[])value.clone();
|
||||
this.playerStatus = (value == null) ? null : (int[])value.clone();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -178,7 +178,7 @@ public class PuzzleObject extends GameObject
|
||||
BoardSummary[] ovalue = this.summaries;
|
||||
requestAttributeChange(
|
||||
SUMMARIES, value, ovalue);
|
||||
this.summaries = (BoardSummary[])value.clone();
|
||||
this.summaries = (value == null) ? null : (BoardSummary[])value.clone();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -88,7 +88,7 @@ public class SpotSceneObject extends SceneObject
|
||||
public void setOccupantLocs (DSet value)
|
||||
{
|
||||
requestAttributeChange(OCCUPANT_LOCS, value, this.occupantLocs);
|
||||
this.occupantLocs = (DSet)value.clone();
|
||||
this.occupantLocs = (value == null) ? null : (DSet)value.clone();
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -134,7 +134,7 @@ public class SpotSceneObject extends SceneObject
|
||||
public void setClusters (DSet value)
|
||||
{
|
||||
requestAttributeChange(CLUSTERS, value, this.clusters);
|
||||
this.clusters = (DSet)value.clone();
|
||||
this.clusters = (value == null) ? null : (DSet)value.clone();
|
||||
}
|
||||
// AUTO-GENERATED: METHODS END
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user