Uses of Class
app.spa.StateFlag

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

Uses of StateFlag in app.spa
 

Fields in app.spa declared as StateFlag
static StateFlag StateFlag.FIRST
          The initial state flag in this enumeration.
static StateFlag StateFlag.LAST
          The final state flag in this enumeration.
 

Methods in app.spa that return StateFlag
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're declared.
 

Methods in app.spa with parameters of type StateFlag
 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.
 

Method parameters in app.spa with type arguments of type StateFlag
 boolean EDTState.hasSome(java.util.EnumSet<StateFlag> ss)
          Indicates whether this state has at least one of the given flags.