Regenerated everything in alphabetical order.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3244 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2004-11-26 23:14:39 +00:00
parent 7108e6e147
commit bf9582e31c
8 changed files with 130 additions and 130 deletions
@@ -69,16 +69,14 @@ public class ChatMarshaller extends InvocationMarshaller
}
}
/** The method id used to dispatch {@link #tell} requests. */
public static final int TELL = 1;
/** The method id used to dispatch {@link #away} requests. */
public static final int AWAY = 1;
// documentation inherited from interface
public void tell (Client arg1, Name arg2, String arg3, ChatService.TellListener arg4)
public void away (Client arg1, String arg2)
{
ChatMarshaller.TellMarshaller listener4 = new ChatMarshaller.TellMarshaller();
listener4.listener = arg4;
sendRequest(arg1, TELL, new Object[] {
arg2, arg3, listener4
sendRequest(arg1, AWAY, new Object[] {
arg2
});
}
@@ -95,14 +93,16 @@ public class ChatMarshaller extends InvocationMarshaller
});
}
/** The method id used to dispatch {@link #away} requests. */
public static final int AWAY = 3;
/** The method id used to dispatch {@link #tell} requests. */
public static final int TELL = 3;
// documentation inherited from interface
public void away (Client arg1, String arg2)
public void tell (Client arg1, Name arg2, String arg3, ChatService.TellListener arg4)
{
sendRequest(arg1, AWAY, new Object[] {
arg2
ChatMarshaller.TellMarshaller listener4 = new ChatMarshaller.TellMarshaller();
listener4.listener = arg4;
sendRequest(arg1, TELL, new Object[] {
arg2, arg3, listener4
});
}