Run generators
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@907 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -21,6 +21,8 @@
|
||||
|
||||
package com.threerings.micasa.lobby;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
@@ -28,6 +30,8 @@ import com.threerings.presents.server.InvocationException;
|
||||
/**
|
||||
* Dispatches requests to the {@link LobbyProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from LobbyService.java.")
|
||||
public class LobbyDispatcher extends InvocationDispatcher<LobbyMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,11 +21,12 @@
|
||||
|
||||
package com.threerings.micasa.lobby;
|
||||
|
||||
import java.util.List;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Provides the implementation of the {@link LobbyService} interface
|
||||
@@ -34,6 +35,8 @@ import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from LobbyService.java.")
|
||||
public class LobbyMarshaller extends InvocationMarshaller
|
||||
implements LobbyService
|
||||
{
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.micasa.lobby;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.crowd.data.PlaceObject;
|
||||
|
||||
/**
|
||||
|
||||
@@ -21,6 +21,8 @@
|
||||
|
||||
package com.threerings.micasa.lobby;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
@@ -28,6 +30,8 @@ import com.threerings.presents.server.InvocationProvider;
|
||||
/**
|
||||
* Defines the server-side of the {@link LobbyService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from LobbyService.java.")
|
||||
public interface LobbyProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.micasa.lobby.table;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.presents.dobj.DSet;
|
||||
|
||||
import com.threerings.parlor.data.Table;
|
||||
@@ -33,9 +34,11 @@ public class TableLobbyObject extends LobbyObject
|
||||
{
|
||||
// AUTO-GENERATED: FIELDS START
|
||||
/** The field name of the <code>tableSet</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String TABLE_SET = "tableSet";
|
||||
|
||||
/** The field name of the <code>tableService</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String TABLE_SERVICE = "tableService";
|
||||
// AUTO-GENERATED: FIELDS END
|
||||
|
||||
@@ -81,6 +84,7 @@ public class TableLobbyObject extends LobbyObject
|
||||
* <code>tableSet</code> set. The set will not change until the event is
|
||||
* actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void addToTableSet (Table elem)
|
||||
{
|
||||
requestEntryAdd(TABLE_SET, tableSet, elem);
|
||||
@@ -91,6 +95,7 @@ public class TableLobbyObject extends LobbyObject
|
||||
* the <code>tableSet</code> set. The set will not change until the
|
||||
* event is actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void removeFromTableSet (Comparable<?> key)
|
||||
{
|
||||
requestEntryRemove(TABLE_SET, tableSet, key);
|
||||
@@ -101,6 +106,7 @@ public class TableLobbyObject extends LobbyObject
|
||||
* <code>tableSet</code> set. The set will not change until the event is
|
||||
* actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void updateTableSet (Table elem)
|
||||
{
|
||||
requestEntryUpdate(TABLE_SET, tableSet, elem);
|
||||
@@ -116,6 +122,7 @@ public class TableLobbyObject extends LobbyObject
|
||||
* change. Proxied copies of this object (on clients) will apply the
|
||||
* value change when they received the attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setTableSet (DSet<Table> value)
|
||||
{
|
||||
requestAttributeChange(TABLE_SET, value, this.tableSet);
|
||||
@@ -131,6 +138,7 @@ public class TableLobbyObject extends LobbyObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setTableService (TableMarshaller value)
|
||||
{
|
||||
TableMarshaller ovalue = this.tableService;
|
||||
|
||||
@@ -21,12 +21,12 @@
|
||||
|
||||
package com.threerings.micasa.simulator.data;
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.micasa.simulator.client.SimulatorService;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
/**
|
||||
* Provides the implementation of the {@link SimulatorService} interface
|
||||
@@ -35,6 +35,8 @@ import com.threerings.micasa.simulator.client.SimulatorService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from SimulatorService.java.")
|
||||
public class SimulatorMarshaller extends InvocationMarshaller
|
||||
implements SimulatorService
|
||||
{
|
||||
|
||||
@@ -21,17 +21,19 @@
|
||||
|
||||
package com.threerings.micasa.simulator.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.micasa.simulator.data.SimulatorMarshaller;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
|
||||
import com.threerings.micasa.simulator.data.SimulatorMarshaller;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link SimulatorProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from SimulatorService.java.")
|
||||
public class SimulatorDispatcher extends InvocationDispatcher<SimulatorMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,10 +21,9 @@
|
||||
|
||||
package com.threerings.parlor.card.client;
|
||||
|
||||
import com.threerings.presents.client.InvocationDecoder;
|
||||
|
||||
import com.threerings.parlor.card.data.Card;
|
||||
import com.threerings.parlor.card.data.Hand;
|
||||
import com.threerings.presents.client.InvocationDecoder;
|
||||
|
||||
/**
|
||||
* Dispatches calls to a {@link CardGameReceiver} instance.
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.parlor.card.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.parlor.game.data.GameObject;
|
||||
|
||||
/**
|
||||
|
||||
@@ -21,13 +21,12 @@
|
||||
|
||||
package com.threerings.parlor.card.server;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationSender;
|
||||
|
||||
import com.threerings.parlor.card.client.CardGameDecoder;
|
||||
import com.threerings.parlor.card.client.CardGameReceiver;
|
||||
import com.threerings.parlor.card.data.Card;
|
||||
import com.threerings.parlor.card.data.Hand;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationSender;
|
||||
|
||||
/**
|
||||
* Used to issue notifications to a {@link CardGameReceiver} instance on a
|
||||
|
||||
@@ -21,11 +21,12 @@
|
||||
|
||||
package com.threerings.parlor.card.trick.data;
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.card.data.Card;
|
||||
import com.threerings.parlor.card.trick.client.TrickCardGameService;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
/**
|
||||
* Provides the implementation of the {@link TrickCardGameService} interface
|
||||
@@ -34,6 +35,8 @@ import com.threerings.parlor.card.trick.client.TrickCardGameService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TrickCardGameService.java.")
|
||||
public class TrickCardGameMarshaller extends InvocationMarshaller
|
||||
implements TrickCardGameService
|
||||
{
|
||||
|
||||
@@ -21,16 +21,19 @@
|
||||
|
||||
package com.threerings.parlor.card.trick.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.card.data.Card;
|
||||
import com.threerings.parlor.card.trick.data.TrickCardGameMarshaller;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.parlor.card.data.Card;
|
||||
import com.threerings.parlor.card.trick.data.TrickCardGameMarshaller;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link TrickCardGameProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TrickCardGameService.java.")
|
||||
public class TrickCardGameDispatcher extends InvocationDispatcher<TrickCardGameMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,15 +21,18 @@
|
||||
|
||||
package com.threerings.parlor.card.trick.server;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.card.data.Card;
|
||||
import com.threerings.parlor.card.trick.client.TrickCardGameService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link TrickCardGameService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TrickCardGameService.java.")
|
||||
public interface TrickCardGameProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,11 +21,9 @@
|
||||
|
||||
package com.threerings.parlor.client;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
|
||||
import com.threerings.presents.client.InvocationDecoder;
|
||||
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.client.InvocationDecoder;
|
||||
import com.threerings.util.Name;
|
||||
|
||||
/**
|
||||
* Dispatches calls to a {@link ParlorReceiver} instance.
|
||||
|
||||
@@ -21,15 +21,15 @@
|
||||
|
||||
package com.threerings.parlor.data;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.client.ParlorService;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
|
||||
import com.threerings.parlor.client.ParlorService;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.util.Name;
|
||||
|
||||
/**
|
||||
* Provides the implementation of the {@link ParlorService} interface
|
||||
@@ -38,6 +38,8 @@ import com.threerings.parlor.game.data.GameConfig;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from ParlorService.java.")
|
||||
public class ParlorMarshaller extends InvocationMarshaller
|
||||
implements ParlorService
|
||||
{
|
||||
|
||||
@@ -21,14 +21,14 @@
|
||||
|
||||
package com.threerings.parlor.data;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.client.TableService;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import com.threerings.util.Name;
|
||||
|
||||
/**
|
||||
* Provides the implementation of the {@link TableService} interface
|
||||
@@ -37,6 +37,8 @@ import com.threerings.parlor.game.data.GameConfig;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TableService.java.")
|
||||
public class TableMarshaller extends InvocationMarshaller
|
||||
implements TableService
|
||||
{
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.parlor.game.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.samskivert.util.StringUtil;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
@@ -39,24 +40,31 @@ public class GameObject extends PlaceObject
|
||||
{
|
||||
// AUTO-GENERATED: FIELDS START
|
||||
/** The field name of the <code>state</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String STATE = "state";
|
||||
|
||||
/** The field name of the <code>isRated</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String IS_RATED = "isRated";
|
||||
|
||||
/** The field name of the <code>isPrivate</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String IS_PRIVATE = "isPrivate";
|
||||
|
||||
/** The field name of the <code>players</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String PLAYERS = "players";
|
||||
|
||||
/** The field name of the <code>winners</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String WINNERS = "winners";
|
||||
|
||||
/** The field name of the <code>sessionId</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String SESSION_ID = "sessionId";
|
||||
|
||||
/** The field name of the <code>playerStatus</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String PLAYER_STATUS = "playerStatus";
|
||||
// AUTO-GENERATED: FIELDS END
|
||||
|
||||
@@ -256,6 +264,7 @@ public class GameObject extends PlaceObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setState (int value)
|
||||
{
|
||||
int ovalue = this.state;
|
||||
@@ -272,6 +281,7 @@ public class GameObject extends PlaceObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setIsRated (boolean value)
|
||||
{
|
||||
boolean ovalue = this.isRated;
|
||||
@@ -288,6 +298,7 @@ public class GameObject extends PlaceObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setIsPrivate (boolean value)
|
||||
{
|
||||
boolean ovalue = this.isPrivate;
|
||||
@@ -304,6 +315,7 @@ public class GameObject extends PlaceObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setPlayers (Name[] value)
|
||||
{
|
||||
Name[] ovalue = this.players;
|
||||
@@ -321,6 +333,7 @@ public class GameObject extends PlaceObject
|
||||
* will apply the value change when they received the attribute
|
||||
* changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setPlayersAt (Name value, int index)
|
||||
{
|
||||
Name ovalue = this.players[index];
|
||||
@@ -337,6 +350,7 @@ public class GameObject extends PlaceObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setWinners (boolean[] value)
|
||||
{
|
||||
boolean[] ovalue = this.winners;
|
||||
@@ -354,6 +368,7 @@ public class GameObject extends PlaceObject
|
||||
* will apply the value change when they received the attribute
|
||||
* changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setWinnersAt (boolean value, int index)
|
||||
{
|
||||
boolean ovalue = this.winners[index];
|
||||
@@ -370,6 +385,7 @@ public class GameObject extends PlaceObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setSessionId (int value)
|
||||
{
|
||||
int ovalue = this.sessionId;
|
||||
@@ -386,6 +402,7 @@ public class GameObject extends PlaceObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setPlayerStatus (int[] value)
|
||||
{
|
||||
int[] ovalue = this.playerStatus;
|
||||
@@ -403,6 +420,7 @@ public class GameObject extends PlaceObject
|
||||
* will apply the value change when they received the attribute
|
||||
* changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setPlayerStatusAt (int value, int index)
|
||||
{
|
||||
int ovalue = this.playerStatus[index];
|
||||
|
||||
@@ -21,20 +21,22 @@
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.client.ParlorService;
|
||||
import com.threerings.parlor.data.ParlorMarshaller;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.util.Name;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link ParlorProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from ParlorService.java.")
|
||||
public class ParlorDispatcher extends InvocationDispatcher<ParlorMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,19 +21,21 @@
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.client.ParlorService;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
import com.threerings.parlor.client.ParlorService;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.util.Name;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link ParlorService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from ParlorService.java.")
|
||||
public interface ParlorProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,14 +21,12 @@
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationSender;
|
||||
|
||||
import com.threerings.parlor.client.ParlorDecoder;
|
||||
import com.threerings.parlor.client.ParlorReceiver;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationSender;
|
||||
import com.threerings.util.Name;
|
||||
|
||||
/**
|
||||
* Used to issue notifications to a {@link ParlorReceiver} instance on a
|
||||
|
||||
@@ -21,20 +21,22 @@
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.data.TableConfig;
|
||||
import com.threerings.parlor.data.TableMarshaller;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.util.Name;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link TableProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TableService.java.")
|
||||
public class TableDispatcher extends InvocationDispatcher<TableMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,20 +21,22 @@
|
||||
|
||||
package com.threerings.parlor.server;
|
||||
|
||||
import com.threerings.util.Name;
|
||||
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.client.TableService;
|
||||
import com.threerings.parlor.data.TableConfig;
|
||||
import com.threerings.parlor.game.data.GameConfig;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
import com.threerings.util.Name;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link TableService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TableService.java.")
|
||||
public interface TableProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,12 +21,13 @@
|
||||
|
||||
package com.threerings.parlor.tourney.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.tourney.client.TourneyService;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
import com.threerings.parlor.tourney.client.TourneyService;
|
||||
|
||||
/**
|
||||
* Provides the implementation of the {@link TourneyService} interface
|
||||
* that marshalls the arguments and delivers the request to the provider
|
||||
@@ -34,6 +35,8 @@ import com.threerings.parlor.tourney.client.TourneyService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TourneyService.java.")
|
||||
public class TourneyMarshaller extends InvocationMarshaller
|
||||
implements TourneyService
|
||||
{
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.parlor.tourney.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.presents.dobj.DObject;
|
||||
import com.threerings.presents.dobj.DSet;
|
||||
|
||||
@@ -31,18 +32,23 @@ public class TourneyObject extends DObject
|
||||
{
|
||||
// AUTO-GENERATED: FIELDS START
|
||||
/** The field name of the <code>state</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String STATE = "state";
|
||||
|
||||
/** The field name of the <code>config</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String CONFIG = "config";
|
||||
|
||||
/** The field name of the <code>startsIn</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String STARTS_IN = "startsIn";
|
||||
|
||||
/** The field name of the <code>tourneyService</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String TOURNEY_SERVICE = "tourneyService";
|
||||
|
||||
/** The field name of the <code>participants</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String PARTICIPANTS = "participants";
|
||||
// AUTO-GENERATED: FIELDS END
|
||||
|
||||
@@ -85,6 +91,7 @@ public class TourneyObject extends DObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setState (int value)
|
||||
{
|
||||
int ovalue = this.state;
|
||||
@@ -101,6 +108,7 @@ public class TourneyObject extends DObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setConfig (TourneyConfig value)
|
||||
{
|
||||
TourneyConfig ovalue = this.config;
|
||||
@@ -117,6 +125,7 @@ public class TourneyObject extends DObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setStartsIn (int value)
|
||||
{
|
||||
int ovalue = this.startsIn;
|
||||
@@ -133,6 +142,7 @@ public class TourneyObject extends DObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setTourneyService (TourneyMarshaller value)
|
||||
{
|
||||
TourneyMarshaller ovalue = this.tourneyService;
|
||||
@@ -146,6 +156,7 @@ public class TourneyObject extends DObject
|
||||
* <code>participants</code> set. The set will not change until the event is
|
||||
* actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void addToParticipants (Participant elem)
|
||||
{
|
||||
requestEntryAdd(PARTICIPANTS, participants, elem);
|
||||
@@ -156,6 +167,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.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void removeFromParticipants (Comparable<?> key)
|
||||
{
|
||||
requestEntryRemove(PARTICIPANTS, participants, key);
|
||||
@@ -166,6 +178,7 @@ public class TourneyObject extends DObject
|
||||
* <code>participants</code> set. The set will not change until the event is
|
||||
* actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void updateParticipants (Participant elem)
|
||||
{
|
||||
requestEntryUpdate(PARTICIPANTS, participants, elem);
|
||||
@@ -181,6 +194,7 @@ public class TourneyObject extends DObject
|
||||
* change. Proxied copies of this object (on clients) will apply the
|
||||
* value change when they received the attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setParticipants (DSet<Participant> value)
|
||||
{
|
||||
requestAttributeChange(PARTICIPANTS, value, this.participants);
|
||||
|
||||
@@ -21,12 +21,13 @@
|
||||
|
||||
package com.threerings.parlor.tourney.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.tourney.client.TourniesService;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
import com.threerings.parlor.tourney.client.TourniesService;
|
||||
|
||||
/**
|
||||
* Provides the implementation of the {@link TourniesService} interface
|
||||
* that marshalls the arguments and delivers the request to the provider
|
||||
@@ -34,6 +35,8 @@ import com.threerings.parlor.tourney.client.TourniesService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TourniesService.java.")
|
||||
public class TourniesMarshaller extends InvocationMarshaller
|
||||
implements TourniesService
|
||||
{
|
||||
|
||||
@@ -21,16 +21,19 @@
|
||||
|
||||
package com.threerings.parlor.tourney.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.tourney.data.TourneyMarshaller;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.parlor.tourney.data.TourneyMarshaller;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link TourneyProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TourneyService.java.")
|
||||
public class TourneyDispatcher extends InvocationDispatcher<TourneyMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,16 +21,19 @@
|
||||
|
||||
package com.threerings.parlor.tourney.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.tourney.client.TourneyService;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
import com.threerings.parlor.tourney.client.TourneyService;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link TourneyService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TourneyService.java.")
|
||||
public interface TourneyProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,17 +21,20 @@
|
||||
|
||||
package com.threerings.parlor.tourney.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.tourney.data.TourneyConfig;
|
||||
import com.threerings.parlor.tourney.data.TourniesMarshaller;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.parlor.tourney.data.TourneyConfig;
|
||||
import com.threerings.parlor.tourney.data.TourniesMarshaller;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link TourniesProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TourniesService.java.")
|
||||
public class TourniesDispatcher extends InvocationDispatcher<TourniesMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,17 +21,20 @@
|
||||
|
||||
package com.threerings.parlor.tourney.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.parlor.tourney.client.TourniesService;
|
||||
import com.threerings.parlor.tourney.data.TourneyConfig;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
import com.threerings.parlor.tourney.client.TourniesService;
|
||||
import com.threerings.parlor.tourney.data.TourneyConfig;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link TourniesService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from TourniesService.java.")
|
||||
public interface TourniesProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,9 +21,10 @@
|
||||
|
||||
package com.threerings.puzzle.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
import com.threerings.puzzle.client.PuzzleGameService;
|
||||
|
||||
/**
|
||||
@@ -33,6 +34,8 @@ import com.threerings.puzzle.client.PuzzleGameService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from PuzzleGameService.java.")
|
||||
public class PuzzleGameMarshaller extends InvocationMarshaller
|
||||
implements PuzzleGameService
|
||||
{
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.puzzle.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.parlor.game.data.GameObject;
|
||||
|
||||
/**
|
||||
@@ -33,15 +34,19 @@ public class PuzzleObject extends GameObject
|
||||
{
|
||||
// AUTO-GENERATED: FIELDS START
|
||||
/** The field name of the <code>puzzleGameService</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String PUZZLE_GAME_SERVICE = "puzzleGameService";
|
||||
|
||||
/** The field name of the <code>difficulty</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String DIFFICULTY = "difficulty";
|
||||
|
||||
/** The field name of the <code>summaries</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String SUMMARIES = "summaries";
|
||||
|
||||
/** The field name of the <code>seed</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String SEED = "seed";
|
||||
// AUTO-GENERATED: FIELDS END
|
||||
|
||||
@@ -67,6 +72,7 @@ public class PuzzleObject extends GameObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setPuzzleGameService (PuzzleGameMarshaller value)
|
||||
{
|
||||
PuzzleGameMarshaller ovalue = this.puzzleGameService;
|
||||
@@ -83,6 +89,7 @@ public class PuzzleObject extends GameObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setDifficulty (int value)
|
||||
{
|
||||
int ovalue = this.difficulty;
|
||||
@@ -99,6 +106,7 @@ public class PuzzleObject extends GameObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setSummaries (BoardSummary[] value)
|
||||
{
|
||||
BoardSummary[] ovalue = this.summaries;
|
||||
@@ -116,6 +124,7 @@ public class PuzzleObject extends GameObject
|
||||
* will apply the value change when they received the attribute
|
||||
* changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setSummariesAt (BoardSummary value, int index)
|
||||
{
|
||||
BoardSummary ovalue = this.summaries[index];
|
||||
@@ -132,6 +141,7 @@ public class PuzzleObject extends GameObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setSeed (long value)
|
||||
{
|
||||
long ovalue = this.seed;
|
||||
|
||||
@@ -21,16 +21,19 @@
|
||||
|
||||
package com.threerings.puzzle.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.puzzle.data.Board;
|
||||
import com.threerings.puzzle.data.PuzzleGameMarshaller;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link PuzzleGameProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from PuzzleGameService.java.")
|
||||
public class PuzzleGameDispatcher extends InvocationDispatcher<PuzzleGameMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,15 +21,18 @@
|
||||
|
||||
package com.threerings.puzzle.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
import com.threerings.puzzle.client.PuzzleGameService;
|
||||
import com.threerings.puzzle.data.Board;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link PuzzleGameService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from PuzzleGameService.java.")
|
||||
public interface PuzzleGameProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,12 +21,12 @@
|
||||
|
||||
package com.threerings.stage.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.miso.data.ObjectInfo;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
import com.threerings.miso.data.ObjectInfo;
|
||||
|
||||
import com.threerings.stage.client.StageSceneService;
|
||||
|
||||
/**
|
||||
@@ -36,6 +36,8 @@ import com.threerings.stage.client.StageSceneService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from StageSceneService.java.")
|
||||
public class StageSceneMarshaller extends InvocationMarshaller
|
||||
implements StageSceneService
|
||||
{
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.stage.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.whirled.spot.data.SpotSceneObject;
|
||||
|
||||
/**
|
||||
@@ -31,12 +32,15 @@ public class StageSceneObject extends SpotSceneObject
|
||||
{
|
||||
// AUTO-GENERATED: FIELDS START
|
||||
/** The field name of the <code>stageSceneService</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String STAGE_SCENE_SERVICE = "stageSceneService";
|
||||
|
||||
/** The field name of the <code>lightLevel</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String LIGHT_LEVEL = "lightLevel";
|
||||
|
||||
/** The field name of the <code>lightShade</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String LIGHT_SHADE = "lightShade";
|
||||
// AUTO-GENERATED: FIELDS END
|
||||
|
||||
@@ -58,6 +62,7 @@ public class StageSceneObject extends SpotSceneObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setStageSceneService (StageSceneMarshaller value)
|
||||
{
|
||||
StageSceneMarshaller ovalue = this.stageSceneService;
|
||||
@@ -74,6 +79,7 @@ public class StageSceneObject extends SpotSceneObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setLightLevel (float value)
|
||||
{
|
||||
float ovalue = this.lightLevel;
|
||||
@@ -90,6 +96,7 @@ public class StageSceneObject extends SpotSceneObject
|
||||
* clients) will apply the value change when they received the
|
||||
* attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setLightShade (int value)
|
||||
{
|
||||
int ovalue = this.lightShade;
|
||||
|
||||
@@ -21,18 +21,20 @@
|
||||
|
||||
package com.threerings.stage.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.miso.data.ObjectInfo;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.miso.data.ObjectInfo;
|
||||
|
||||
import com.threerings.stage.data.StageSceneMarshaller;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link StageSceneProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from StageSceneService.java.")
|
||||
public class StageSceneDispatcher extends InvocationDispatcher<StageSceneMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,18 +21,20 @@
|
||||
|
||||
package com.threerings.stage.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.miso.data.ObjectInfo;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
import com.threerings.miso.data.ObjectInfo;
|
||||
|
||||
import com.threerings.stage.client.StageSceneService;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link StageSceneService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from StageSceneService.java.")
|
||||
public interface StageSceneProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,12 +21,12 @@
|
||||
|
||||
package com.threerings.whirled.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.crowd.data.PlaceConfig;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
|
||||
import com.threerings.crowd.data.PlaceConfig;
|
||||
|
||||
import com.threerings.whirled.client.SceneService;
|
||||
|
||||
/**
|
||||
@@ -36,6 +36,8 @@ import com.threerings.whirled.client.SceneService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from SceneService.java.")
|
||||
public class SceneMarshaller extends InvocationMarshaller
|
||||
implements SceneService
|
||||
{
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.whirled.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.crowd.data.PlaceObject;
|
||||
|
||||
public class SceneObject extends PlaceObject
|
||||
|
||||
@@ -21,16 +21,19 @@
|
||||
|
||||
package com.threerings.whirled.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.whirled.client.SceneService;
|
||||
import com.threerings.whirled.data.SceneMarshaller;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link SceneProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from SceneService.java.")
|
||||
public class SceneDispatcher extends InvocationDispatcher<SceneMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,15 +21,18 @@
|
||||
|
||||
package com.threerings.whirled.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
import com.threerings.whirled.client.SceneService;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link SceneService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from SceneService.java.")
|
||||
public interface SceneProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -23,7 +23,6 @@ package com.threerings.whirled.server;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationSender;
|
||||
|
||||
import com.threerings.whirled.client.SceneDecoder;
|
||||
import com.threerings.whirled.client.SceneReceiver;
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.whirled.spot.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.presents.dobj.DObject;
|
||||
import com.threerings.presents.dobj.OidList;
|
||||
|
||||
@@ -34,6 +35,7 @@ public class ClusterObject extends DObject
|
||||
{
|
||||
// AUTO-GENERATED: FIELDS START
|
||||
/** The field name of the <code>occupants</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String OCCUPANTS = "occupants";
|
||||
// AUTO-GENERATED: FIELDS END
|
||||
|
||||
@@ -56,6 +58,7 @@ public class ClusterObject extends DObject
|
||||
* oid list. The list will not change until the event is actually
|
||||
* propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void addToOccupants (int oid)
|
||||
{
|
||||
requestOidAdd(OCCUPANTS, oid);
|
||||
@@ -66,6 +69,7 @@ public class ClusterObject extends DObject
|
||||
* <code>occupants</code> oid list. The list will not change until the
|
||||
* event is actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void removeFromOccupants (int oid)
|
||||
{
|
||||
requestOidRemove(OCCUPANTS, oid);
|
||||
|
||||
@@ -21,10 +21,11 @@
|
||||
|
||||
package com.threerings.whirled.spot.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
|
||||
import com.threerings.whirled.client.SceneService;
|
||||
import com.threerings.whirled.data.SceneMarshaller;
|
||||
import com.threerings.whirled.spot.client.SpotService;
|
||||
@@ -36,6 +37,8 @@ import com.threerings.whirled.spot.client.SpotService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from SpotService.java.")
|
||||
public class SpotMarshaller extends InvocationMarshaller
|
||||
implements SpotService
|
||||
{
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.whirled.spot.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import com.threerings.presents.dobj.DSet;
|
||||
|
||||
import com.threerings.whirled.data.SceneObject;
|
||||
@@ -32,9 +33,11 @@ public class SpotSceneObject extends SceneObject
|
||||
{
|
||||
// AUTO-GENERATED: FIELDS START
|
||||
/** The field name of the <code>occupantLocs</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String OCCUPANT_LOCS = "occupantLocs";
|
||||
|
||||
/** The field name of the <code>clusters</code> field. */
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public static final String CLUSTERS = "clusters";
|
||||
// AUTO-GENERATED: FIELDS END
|
||||
|
||||
@@ -51,6 +54,7 @@ public class SpotSceneObject extends SceneObject
|
||||
* <code>occupantLocs</code> set. The set will not change until the event is
|
||||
* actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void addToOccupantLocs (SceneLocation elem)
|
||||
{
|
||||
requestEntryAdd(OCCUPANT_LOCS, occupantLocs, elem);
|
||||
@@ -61,6 +65,7 @@ public class SpotSceneObject extends SceneObject
|
||||
* the <code>occupantLocs</code> set. The set will not change until the
|
||||
* event is actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void removeFromOccupantLocs (Comparable<?> key)
|
||||
{
|
||||
requestEntryRemove(OCCUPANT_LOCS, occupantLocs, key);
|
||||
@@ -71,6 +76,7 @@ public class SpotSceneObject extends SceneObject
|
||||
* <code>occupantLocs</code> set. The set will not change until the event is
|
||||
* actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void updateOccupantLocs (SceneLocation elem)
|
||||
{
|
||||
requestEntryUpdate(OCCUPANT_LOCS, occupantLocs, elem);
|
||||
@@ -86,6 +92,7 @@ public class SpotSceneObject extends SceneObject
|
||||
* change. Proxied copies of this object (on clients) will apply the
|
||||
* value change when they received the attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setOccupantLocs (DSet<SceneLocation> value)
|
||||
{
|
||||
requestAttributeChange(OCCUPANT_LOCS, value, this.occupantLocs);
|
||||
@@ -98,6 +105,7 @@ public class SpotSceneObject extends SceneObject
|
||||
* <code>clusters</code> set. The set will not change until the event is
|
||||
* actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void addToClusters (Cluster elem)
|
||||
{
|
||||
requestEntryAdd(CLUSTERS, clusters, elem);
|
||||
@@ -108,6 +116,7 @@ public class SpotSceneObject extends SceneObject
|
||||
* the <code>clusters</code> set. The set will not change until the
|
||||
* event is actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void removeFromClusters (Comparable<?> key)
|
||||
{
|
||||
requestEntryRemove(CLUSTERS, clusters, key);
|
||||
@@ -118,6 +127,7 @@ public class SpotSceneObject extends SceneObject
|
||||
* <code>clusters</code> set. The set will not change until the event is
|
||||
* actually propagated through the system.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void updateClusters (Cluster elem)
|
||||
{
|
||||
requestEntryUpdate(CLUSTERS, clusters, elem);
|
||||
@@ -133,6 +143,7 @@ public class SpotSceneObject extends SceneObject
|
||||
* change. Proxied copies of this object (on clients) will apply the
|
||||
* value change when they received the attribute changed notification.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenDObjectTask"})
|
||||
public void setClusters (DSet<Cluster> value)
|
||||
{
|
||||
requestAttributeChange(CLUSTERS, value, this.clusters);
|
||||
|
||||
@@ -21,11 +21,12 @@
|
||||
|
||||
package com.threerings.whirled.spot.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.whirled.client.SceneService;
|
||||
import com.threerings.whirled.spot.data.Location;
|
||||
import com.threerings.whirled.spot.data.SpotMarshaller;
|
||||
@@ -33,6 +34,8 @@ import com.threerings.whirled.spot.data.SpotMarshaller;
|
||||
/**
|
||||
* Dispatches requests to the {@link SpotProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from SpotService.java.")
|
||||
public class SpotDispatcher extends InvocationDispatcher<SpotMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,11 +21,12 @@
|
||||
|
||||
package com.threerings.whirled.spot.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
import com.threerings.whirled.client.SceneService;
|
||||
import com.threerings.whirled.spot.client.SpotService;
|
||||
import com.threerings.whirled.spot.data.Location;
|
||||
@@ -33,6 +34,8 @@ import com.threerings.whirled.spot.data.Location;
|
||||
/**
|
||||
* Defines the server-side of the {@link SpotService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from SpotService.java.")
|
||||
public interface SpotProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,12 +21,12 @@
|
||||
|
||||
package com.threerings.whirled.zone.data;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.crowd.data.PlaceConfig;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
|
||||
import com.threerings.crowd.data.PlaceConfig;
|
||||
|
||||
import com.threerings.whirled.data.SceneModel;
|
||||
import com.threerings.whirled.data.SceneUpdate;
|
||||
import com.threerings.whirled.zone.client.ZoneService;
|
||||
@@ -38,6 +38,8 @@ import com.threerings.whirled.zone.client.ZoneService;
|
||||
* interfaces that marshall the response arguments and deliver them back
|
||||
* to the requesting client.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from ZoneService.java.")
|
||||
public class ZoneMarshaller extends InvocationMarshaller
|
||||
implements ZoneService
|
||||
{
|
||||
|
||||
@@ -21,16 +21,19 @@
|
||||
|
||||
package com.threerings.whirled.zone.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationDispatcher;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
|
||||
import com.threerings.whirled.zone.client.ZoneService;
|
||||
import com.threerings.whirled.zone.data.ZoneMarshaller;
|
||||
|
||||
/**
|
||||
* Dispatches requests to the {@link ZoneProvider}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from ZoneService.java.")
|
||||
public class ZoneDispatcher extends InvocationDispatcher<ZoneMarshaller>
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -21,15 +21,18 @@
|
||||
|
||||
package com.threerings.whirled.zone.server;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationException;
|
||||
import com.threerings.presents.server.InvocationProvider;
|
||||
|
||||
import com.threerings.whirled.zone.client.ZoneService;
|
||||
|
||||
/**
|
||||
* Defines the server-side of the {@link ZoneService}.
|
||||
*/
|
||||
@Generated(value={"com.threerings.presents.tools.GenServiceTask"},
|
||||
comments="Derived from ZoneService.java.")
|
||||
public interface ZoneProvider extends InvocationProvider
|
||||
{
|
||||
/**
|
||||
|
||||
@@ -23,7 +23,6 @@ package com.threerings.whirled.zone.server;
|
||||
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.server.InvocationSender;
|
||||
|
||||
import com.threerings.whirled.zone.client.ZoneDecoder;
|
||||
import com.threerings.whirled.zone.client.ZoneReceiver;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user