Rerun generators.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@473 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -129,7 +129,7 @@ public class EZGameDispatcher extends InvocationDispatcher
|
|||||||
case EZGameMarshaller.SEND_MESSAGE:
|
case EZGameMarshaller.SEND_MESSAGE:
|
||||||
((EZGameProvider)provider).sendMessage(
|
((EZGameProvider)provider).sendMessage(
|
||||||
source,
|
source,
|
||||||
(String)args[0], (Object)args[1], ((Integer)args[2]).intValue(), (InvocationService.InvocationListener)args[3]
|
(String)args[0], args[1], ((Integer)args[2]).intValue(), (InvocationService.InvocationListener)args[3]
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -143,7 +143,7 @@ public class EZGameDispatcher extends InvocationDispatcher
|
|||||||
case EZGameMarshaller.SET_PROPERTY:
|
case EZGameMarshaller.SET_PROPERTY:
|
||||||
((EZGameProvider)provider).setProperty(
|
((EZGameProvider)provider).setProperty(
|
||||||
source,
|
source,
|
||||||
(String)args[0], (Object)args[1], ((Integer)args[2]).intValue(), ((Boolean)args[3]).booleanValue(), (Object)args[4], (InvocationService.InvocationListener)args[5]
|
(String)args[0], args[1], ((Integer)args[2]).intValue(), ((Boolean)args[3]).booleanValue(), args[4], (InvocationService.InvocationListener)args[5]
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
@@ -59,13 +59,13 @@ public class CardGameDecoder extends InvocationDecoder
|
|||||||
this.receiver = receiver;
|
this.receiver = receiver;
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
@Override // documentation inherited
|
||||||
public String getReceiverCode ()
|
public String getReceiverCode ()
|
||||||
{
|
{
|
||||||
return RECEIVER_CODE;
|
return RECEIVER_CODE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
@Override // documentation inherited
|
||||||
public void dispatchNotification (int methodId, Object[] args)
|
public void dispatchNotification (int methodId, Object[] args)
|
||||||
{
|
{
|
||||||
switch (methodId) {
|
switch (methodId) {
|
||||||
|
|||||||
@@ -59,13 +59,13 @@ public class ParlorDecoder extends InvocationDecoder
|
|||||||
this.receiver = receiver;
|
this.receiver = receiver;
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
@Override // documentation inherited
|
||||||
public String getReceiverCode ()
|
public String getReceiverCode ()
|
||||||
{
|
{
|
||||||
return RECEIVER_CODE;
|
return RECEIVER_CODE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
@Override // documentation inherited
|
||||||
public void dispatchNotification (int methodId, Object[] args)
|
public void dispatchNotification (int methodId, Object[] args)
|
||||||
{
|
{
|
||||||
switch (methodId) {
|
switch (methodId) {
|
||||||
@@ -89,7 +89,7 @@ public class ParlorDecoder extends InvocationDecoder
|
|||||||
|
|
||||||
case RECEIVED_INVITE_RESPONSE:
|
case RECEIVED_INVITE_RESPONSE:
|
||||||
((ParlorReceiver)receiver).receivedInviteResponse(
|
((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;
|
return;
|
||||||
|
|
||||||
|
|||||||
@@ -311,7 +311,7 @@ public class GameObject extends PlaceObject
|
|||||||
Name[] ovalue = this.players;
|
Name[] ovalue = this.players;
|
||||||
requestAttributeChange(
|
requestAttributeChange(
|
||||||
PLAYERS, value, ovalue);
|
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;
|
boolean[] ovalue = this.winners;
|
||||||
requestAttributeChange(
|
requestAttributeChange(
|
||||||
WINNERS, value, ovalue);
|
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;
|
int[] ovalue = this.playerStatus;
|
||||||
requestAttributeChange(
|
requestAttributeChange(
|
||||||
PLAYER_STATUS, value, ovalue);
|
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:
|
case ParlorMarshaller.RESPOND:
|
||||||
((ParlorProvider)provider).respond(
|
((ParlorProvider)provider).respond(
|
||||||
source,
|
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;
|
return;
|
||||||
|
|
||||||
|
|||||||
@@ -105,7 +105,7 @@ public class PuzzleObject extends GameObject
|
|||||||
BoardSummary[] ovalue = this.summaries;
|
BoardSummary[] ovalue = this.summaries;
|
||||||
requestAttributeChange(
|
requestAttributeChange(
|
||||||
SUMMARIES, value, ovalue);
|
SUMMARIES, value, ovalue);
|
||||||
this.summaries = (value == null) ? null : (BoardSummary[])value.clone();
|
this.summaries = (value == null) ? null : value.clone();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -45,13 +45,13 @@ public class SceneDecoder extends InvocationDecoder
|
|||||||
this.receiver = receiver;
|
this.receiver = receiver;
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
@Override // documentation inherited
|
||||||
public String getReceiverCode ()
|
public String getReceiverCode ()
|
||||||
{
|
{
|
||||||
return RECEIVER_CODE;
|
return RECEIVER_CODE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
@Override // documentation inherited
|
||||||
public void dispatchNotification (int methodId, Object[] args)
|
public void dispatchNotification (int methodId, Object[] args)
|
||||||
{
|
{
|
||||||
switch (methodId) {
|
switch (methodId) {
|
||||||
|
|||||||
@@ -45,13 +45,13 @@ public class ZoneDecoder extends InvocationDecoder
|
|||||||
this.receiver = receiver;
|
this.receiver = receiver;
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
@Override // documentation inherited
|
||||||
public String getReceiverCode ()
|
public String getReceiverCode ()
|
||||||
{
|
{
|
||||||
return RECEIVER_CODE;
|
return RECEIVER_CODE;
|
||||||
}
|
}
|
||||||
|
|
||||||
// documentation inherited
|
@Override // documentation inherited
|
||||||
public void dispatchNotification (int methodId, Object[] args)
|
public void dispatchNotification (int methodId, Object[] args)
|
||||||
{
|
{
|
||||||
switch (methodId) {
|
switch (methodId) {
|
||||||
|
|||||||
Reference in New Issue
Block a user