Uses of Class
app.spa.EventId

Packages that use EventId
app.spa This package defines classes supporting the SiGMLPlayerApplet class. 
 

Uses of EventId in app.spa
 

Fields in app.spa declared as EventId
 EventId SPAEvent.KIND
          The event kind.
 

Methods in app.spa that return EventId
static EventId EventId.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EventId[] EventId.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in app.spa that return types with arguments of type EventId
static java.util.EnumSet<EventId> EventId.spaEventIds(EventId e0, EventId e1)
          Returns a set containing the given pair of SPA event ids.
static java.util.EnumSet<EventId> EventId.spaEventIds(EventId s0, EventId s1, EventId s2)
          Returns a set containing the given trio of SPA event ids.
 

Methods in app.spa with parameters of type EventId
 SPAEventAck SPAEventStreamChannel.postEvent(EventId eid)
          Posts a new event with the given id to this channel, blocking if necessary until it is ready to accept it, before obtaining and returning the corresponding acknowledgment.
 SPAEventAck SPAEventTarget.postEvent(EventId eid)
          Posts a new event with the given id and default values for it other parameters to this event target, waiting until the target provides an acknowledgement, which this method returns.
 SPAEventAck SimplerSPAEventStreamChannel.postEvent(EventId eid)
          Posts a new event with the given id to this channel, blocking if necessary until it is ready to accept it, before obtaining and returning the corresponding acknowledgment.
static java.util.EnumSet<EventId> EventId.spaEventIds(EventId e0, EventId e1)
          Returns a set containing the given pair of SPA event ids.
static java.util.EnumSet<EventId> EventId.spaEventIds(EventId s0, EventId s1, EventId s2)
          Returns a set containing the given trio of SPA event ids.
 

Method parameters in app.spa with type arguments of type EventId
 boolean EventId.isIn(java.util.EnumSet<EventId> eids)
          Tests whether this event is in the given set.
 

Constructors in app.spa with parameters of type EventId
SPAEvent(EventId kind)
          Constructs a new event of the given kind, with default parameter values.
SPAEvent(EventId kind, boolean flag)
          Constructs a new event of the given kind, with the given boolean parameter value, and default values for the remaining parameters.
SPAEvent(EventId kind, java.lang.String param)
          Constructs a new event of the given kind, with the given string parameter value, and default values for the remaining parameters.
SPAEvent(EventId kind, java.lang.String param, boolean flag, int[] ints)
          Constructs a new event of the given kind, with the given string, boolean, and integer list parameter values.