Package | Description |
---|---|
app.spa |
This package defines classes supporting the
SiGMLPlayerApplet
class. |
Modifier and Type | Field and Description |
---|---|
EventId |
SPAEvent.KIND
The event kind.
|
Modifier and Type | Method and Description |
---|---|
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 are declared.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
boolean |
EventId.isIn(java.util.EnumSet<EventId> eids)
Tests whether this event is in the given set.
|
Constructor and Description |
---|
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.
|