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
@@ -45,7 +45,6 @@ public class LobbyDispatcher extends InvocationDispatcher<LobbyMarshaller>
return new LobbyMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -90,7 +90,7 @@ public class TableLobbyObject extends LobbyObject
* the <code>tableSet</code> set. The set will not change until the
* event is actually propagated through the system.
*/
public void removeFromTableSet (Comparable key)
public void removeFromTableSet (Comparable<?> key)
{
requestEntryRemove(TABLE_SET, tableSet, key);
}
@@ -118,8 +118,7 @@ public class TableLobbyObject extends LobbyObject
public void setTableSet (DSet value)
{
requestAttributeChange(TABLE_SET, value, this.tableSet);
@SuppressWarnings("unchecked") DSet clone =
(value == null) ? null : value.typedClone();
DSet clone = (value == null) ? null : value.typedClone();
this.tableSet = clone;
}
@@ -47,7 +47,6 @@ public class SimulatorDispatcher extends InvocationDispatcher<SimulatorMarshalle
return new SimulatorMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -47,7 +47,6 @@ public class TrickCardGameDispatcher extends InvocationDispatcher<TrickCardGameM
return new TrickCardGameMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -50,7 +50,6 @@ public class ParlorDispatcher extends InvocationDispatcher<ParlorMarshaller>
return new ParlorMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -49,7 +49,6 @@ public class TableDispatcher extends InvocationDispatcher<TableMarshaller>
return new TableMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -156,7 +156,7 @@ public class TourneyObject extends DObject
* the <code>participants</code> set. The set will not change until the
* event is actually propagated through the system.
*/
public void removeFromParticipants (Comparable key)
public void removeFromParticipants (Comparable<?> key)
{
requestEntryRemove(PARTICIPANTS, participants, key);
}
@@ -184,8 +184,7 @@ public class TourneyObject extends DObject
public void setParticipants (DSet<Participant> value)
{
requestAttributeChange(PARTICIPANTS, value, this.participants);
@SuppressWarnings("unchecked") DSet<Participant> clone =
(value == null) ? null : value.typedClone();
DSet<Participant> clone = (value == null) ? null : value.typedClone();
this.participants = clone;
}
// AUTO-GENERATED: METHODS END
@@ -47,7 +47,6 @@ public class TourneyDispatcher extends InvocationDispatcher<TourneyMarshaller>
return new TourneyMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -48,7 +48,6 @@ public class TourniesDispatcher extends InvocationDispatcher<TourniesMarshaller>
return new TourniesMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -47,7 +47,6 @@ public class PuzzleGameDispatcher extends InvocationDispatcher<PuzzleGameMarshal
return new PuzzleGameMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -48,7 +48,6 @@ public class StageSceneDispatcher extends InvocationDispatcher<StageSceneMarshal
return new StageSceneMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -47,7 +47,6 @@ public class SceneDispatcher extends InvocationDispatcher<SceneMarshaller>
return new SceneMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)
@@ -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)
@@ -47,7 +47,6 @@ public class ZoneDispatcher extends InvocationDispatcher<ZoneMarshaller>
return new ZoneMarshaller();
}
@SuppressWarnings("unchecked")
@Override // documentation inherited
public void dispatchRequest (
ClientObject source, int methodId, Object[] args)