Rerun generators.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@473 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Dave Hoover
2007-10-26 21:06:42 +00:00
parent 44ddce00e8
commit adaf80af0a
8 changed files with 16 additions and 16 deletions
@@ -59,13 +59,13 @@ public class CardGameDecoder extends InvocationDecoder
this.receiver = receiver;
}
// documentation inherited
@Override // documentation inherited
public String getReceiverCode ()
{
return RECEIVER_CODE;
}
// documentation inherited
@Override // documentation inherited
public void dispatchNotification (int methodId, Object[] args)
{
switch (methodId) {
@@ -59,13 +59,13 @@ public class ParlorDecoder extends InvocationDecoder
this.receiver = receiver;
}
// documentation inherited
@Override // documentation inherited
public String getReceiverCode ()
{
return RECEIVER_CODE;
}
// documentation inherited
@Override // documentation inherited
public void dispatchNotification (int methodId, Object[] args)
{
switch (methodId) {
@@ -89,7 +89,7 @@ public class ParlorDecoder extends InvocationDecoder
case RECEIVED_INVITE_RESPONSE:
((ParlorReceiver)receiver).receivedInviteResponse(
((Integer)args[0]).intValue(), ((Integer)args[1]).intValue(), (Object)args[2]
((Integer)args[0]).intValue(), ((Integer)args[1]).intValue(), args[2]
);
return;
@@ -311,7 +311,7 @@ public class GameObject extends PlaceObject
Name[] ovalue = this.players;
requestAttributeChange(
PLAYERS, value, ovalue);
this.players = (value == null) ? null : (Name[])value.clone();
this.players = (value == null) ? null : value.clone();
}
/**
@@ -344,7 +344,7 @@ public class GameObject extends PlaceObject
boolean[] ovalue = this.winners;
requestAttributeChange(
WINNERS, value, ovalue);
this.winners = (value == null) ? null : (boolean[])value.clone();
this.winners = (value == null) ? null : value.clone();
}
/**
@@ -393,7 +393,7 @@ public class GameObject extends PlaceObject
int[] ovalue = this.playerStatus;
requestAttributeChange(
PLAYER_STATUS, value, ovalue);
this.playerStatus = (value == null) ? null : (int[])value.clone();
this.playerStatus = (value == null) ? null : value.clone();
}
/**
@@ -75,7 +75,7 @@ public class ParlorDispatcher extends InvocationDispatcher
case ParlorMarshaller.RESPOND:
((ParlorProvider)provider).respond(
source,
((Integer)args[0]).intValue(), ((Integer)args[1]).intValue(), (Object)args[2], (InvocationService.InvocationListener)args[3]
((Integer)args[0]).intValue(), ((Integer)args[1]).intValue(), args[2], (InvocationService.InvocationListener)args[3]
);
return;