Regeneration of generated files.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@84 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2006-10-02 07:46:47 +00:00
parent a32f71bcda
commit f48a48436d
32 changed files with 109 additions and 103 deletions
@@ -1,9 +1,9 @@
// //
// $Id: LobbyDispatcher.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -44,13 +44,13 @@ public class LobbyDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new LobbyMarshaller(); return new LobbyMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id: LobbyMarshaller.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: LobbyProvider.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -105,7 +105,9 @@ public class TableLobbyObject
public void setTableSet (DSet value) public void setTableSet (DSet value)
{ {
requestAttributeChange(TABLE_SET, value, this.tableSet); requestAttributeChange(TABLE_SET, value, this.tableSet);
this.tableSet = (value == null) ? null : value.typedClone(); @SuppressWarnings("unchecked") DSet clone =
(value == null) ? null : value.typedClone();
this.tableSet = clone;
} }
// AUTO-GENERATED: METHODS END // AUTO-GENERATED: METHODS END
} }
@@ -1,9 +1,9 @@
// //
// $Id: SimulatorMarshaller.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: SimulatorDispatcher.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -44,13 +44,13 @@ public class SimulatorDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new SimulatorMarshaller(); return new SimulatorMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id$ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id$ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id$ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id$ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -44,13 +44,13 @@ public class TrickCardGameDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new TrickCardGameMarshaller(); return new TrickCardGameMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id$ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: ParlorDecoder.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: ParlorMarshaller.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: ParlorDispatcher.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -47,13 +47,13 @@ public class ParlorDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new ParlorMarshaller(); return new ParlorMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id: ParlorSender.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: PuzzleGameMarshaller.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: PuzzleGameDispatcher.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -44,13 +44,13 @@ public class PuzzleGameDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new PuzzleGameMarshaller(); return new PuzzleGameMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id: PuzzleGameProvider.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id$ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id$ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -45,13 +45,13 @@ public class StageSceneDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new StageSceneMarshaller(); return new StageSceneMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id$ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: SceneDecoder.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: SceneMarshaller.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: SceneDispatcher.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -46,13 +46,13 @@ public class SceneDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new SceneMarshaller(); return new SceneMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id: SceneSender.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: SpotMarshaller.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -88,7 +88,9 @@ public class SpotSceneObject extends SceneObject
public void setOccupantLocs (DSet value) public void setOccupantLocs (DSet value)
{ {
requestAttributeChange(OCCUPANT_LOCS, value, this.occupantLocs); requestAttributeChange(OCCUPANT_LOCS, value, this.occupantLocs);
this.occupantLocs = (value == null) ? null : value.typedClone(); @SuppressWarnings("unchecked") DSet clone =
(value == null) ? null : value.typedClone();
this.occupantLocs = clone;
} }
/** /**
@@ -134,7 +136,9 @@ public class SpotSceneObject extends SceneObject
public void setClusters (DSet value) public void setClusters (DSet value)
{ {
requestAttributeChange(CLUSTERS, value, this.clusters); requestAttributeChange(CLUSTERS, value, this.clusters);
this.clusters = (value == null) ? null : value.typedClone(); @SuppressWarnings("unchecked") DSet clone =
(value == null) ? null : value.typedClone();
this.clusters = clone;
} }
// AUTO-GENERATED: METHODS END // AUTO-GENERATED: METHODS END
} }
@@ -1,9 +1,9 @@
// //
// $Id: SpotDispatcher.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -47,13 +47,13 @@ public class SpotDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new SpotMarshaller(); return new SpotMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id: ZoneDecoder.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: ZoneMarshaller.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -1,9 +1,9 @@
// //
// $Id: ZoneDispatcher.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published
@@ -47,13 +47,13 @@ public class ZoneDispatcher extends InvocationDispatcher
this.provider = provider; this.provider = provider;
} }
// documentation inherited // from InvocationDispatcher
public InvocationMarshaller createMarshaller () public InvocationMarshaller createMarshaller ()
{ {
return new ZoneMarshaller(); return new ZoneMarshaller();
} }
// documentation inherited @SuppressWarnings("unchecked") // from InvocationDispatcher
public void dispatchRequest ( public void dispatchRequest (
ClientObject source, int methodId, Object[] args) ClientObject source, int methodId, Object[] args)
throws InvocationException throws InvocationException
@@ -1,9 +1,9 @@
// //
// $Id: ZoneSender.java 4145 2006-05-24 01:24:24Z ray $ // $Id$
// //
// Narya library - tools for developing networked games // Vilya library - tools for developing networked games
// Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved // Copyright (C) 2002-2006 Three Rings Design, Inc., All Rights Reserved
// http://www.threerings.net/code/narya/ // http://www.threerings.net/code/vilya/
// //
// This library is free software; you can redistribute it and/or modify it // This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published // under the terms of the GNU Lesser General Public License as published