Package | Description |
---|---|
app.spa |
This package defines classes supporting the
SiGMLPlayerApplet
class. |
Modifier and Type | Field and Description |
---|---|
static StateFlag |
StateFlag.FIRST
The initial state flag in this enumeration.
|
static StateFlag |
StateFlag.LAST
The final state flag in this enumeration.
|
Modifier and Type | Method and Description |
---|---|
static StateFlag |
StateFlag.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StateFlag[] |
StateFlag.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
boolean |
EDTState.has(StateFlag s)
Indicates whether this state has the given flag.
|
boolean |
EDTState.hasBoth(StateFlag s0,
StateFlag s1)
Indicates whether this state has both the given flags.
|
boolean |
EDTState.hasSome(StateFlag s0,
StateFlag s1)
Indicates whether this state has at least one of the given flags.
|
boolean |
EDTState.hasSome(StateFlag s0,
StateFlag s1,
StateFlag s2)
Indicates whether this state has at least one of the given flags.
|
void |
EDTState.include(StateFlag s)
Adds the given flag to this state, if it is not already present,
leaving all others unchanged.
|
void |
EDTState.oneOutOneIn(StateFlag sout,
StateFlag sin) |
void |
EDTState.remove(StateFlag s)
Removes the given flag from this state, if it is present, leaving
all others unchanged.
|
void |
EDTState.setOnly(StateFlag s)
Ensures that this state includes the given flag but no others.
|
Modifier and Type | Method and Description |
---|---|
boolean |
EDTState.hasSome(java.util.EnumSet<StateFlag> ss)
Indicates whether this state has at least one of the given flags.
|