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
@@ -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)