Regenerated services and objects.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@690 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2008-07-30 13:56:07 +00:00
parent 3ac87296a6
commit 18608763ea
24 changed files with 39 additions and 55 deletions
@@ -60,7 +60,7 @@ public class SpotSceneObject extends SceneObject
* the <code>occupantLocs</code> set. The set will not change until the
* event is actually propagated through the system.
*/
public void removeFromOccupantLocs (Comparable key)
public void removeFromOccupantLocs (Comparable<?> key)
{
requestEntryRemove(OCCUPANT_LOCS, occupantLocs, key);
}
@@ -88,8 +88,7 @@ public class SpotSceneObject extends SceneObject
public void setOccupantLocs (DSet<SceneLocation> value)
{
requestAttributeChange(OCCUPANT_LOCS, value, this.occupantLocs);
@SuppressWarnings("unchecked") DSet<SceneLocation> clone =
(value == null) ? null : value.typedClone();
DSet<SceneLocation> clone = (value == null) ? null : value.typedClone();
this.occupantLocs = clone;
}
@@ -108,7 +107,7 @@ public class SpotSceneObject extends SceneObject
* the <code>clusters</code> set. The set will not change until the
* event is actually propagated through the system.
*/
public void removeFromClusters (Comparable key)
public void removeFromClusters (Comparable<?> key)
{
requestEntryRemove(CLUSTERS, clusters, key);
}
@@ -136,8 +135,7 @@ public class SpotSceneObject extends SceneObject
public void setClusters (DSet<Cluster> value)
{
requestAttributeChange(CLUSTERS, value, this.clusters);
@SuppressWarnings("unchecked") DSet<Cluster> clone =
(value == null) ? null : value.typedClone();
DSet<Cluster> clone = (value == null) ? null : value.typedClone();
this.clusters = clone;
}
// AUTO-GENERATED: METHODS END
@@ -49,7 +49,6 @@ public class SpotDispatcher extends InvocationDispatcher<SpotMarshaller>
return new SpotMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)