Implement this interface to represent a set of states.
The interface XAccessibleStateSet represents a set of
states of an accessible object. It can hold any combination of states
defined by the constants collection
AccessibleStateType.
Checks if all of the given states are in the state set of the called
object.
Parameter aStateSet
This sequence of states is interpreted as set and every of its
members, duplicates are ignored, is checked for membership in
this object's state set. Each state has to be one of the
constants of AccessibleStateType.
Returns
Returns true if all states of the given state set are members
of this object's state set. false is returned if at least
one of the states in the given state is not a member of this
object's state set.
Get all currently set states as a sequence of state ids.
The purpose of this function is to reduce the communication
between accessibility objects and AT. Without this function an
AT-Tool had to call contains() for every state
type. Now a single call is sufficient.
Returns
The returned sequence contains one entry for every currently set
state. This entry is the id of that state. The order of the
states in the sequence is undefined.