javax.accessibility
Class AccessibleStateSet

java.lang.Object
  |
  +--javax.accessibility.AccessibleStateSet

public class AccessibleStateSet
extends Object

Untamed:


Field Summary
protected  Vector states
          Each entry in the Vector represents an AccessibleState.
 
Constructor Summary
AccessibleStateSet()
          Enabled: Creates a new empty state set.
AccessibleStateSet(AccessibleState[] states)
          Enabled: Creates a new state with the initial set of states contained in the array of states passed in.
 
Method Summary
 boolean add(AccessibleState state)
          Enabled: Adds a new state to the current state set if it is not already present.
 void addAll(AccessibleState[] states)
          Enabled: Adds all of the states to the existing state set.
 void clear()
          Enabled: Removes all the states from the current state set.
 boolean contains(AccessibleState state)
          Enabled: Checks if the current state is in the state set.
 boolean remove(AccessibleState state)
          Enabled: Removes a state from the current state set.
 AccessibleState[] toArray()
          Enabled: Returns the current state set as an array of AccessibleState
 String toString()
          Suppressed: Creates a localized String representing all the states in the set using the default locale.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

states

protected Vector states
Each entry in the Vector represents an AccessibleState.

See Also:
add(javax.accessibility.AccessibleState), addAll(javax.accessibility.AccessibleState[]), remove(javax.accessibility.AccessibleState), contains(javax.accessibility.AccessibleState), toArray(), clear()
Constructor Detail

AccessibleStateSet

public AccessibleStateSet()
Enabled: Creates a new empty state set.


AccessibleStateSet

public AccessibleStateSet(AccessibleState[] states)
Enabled: Creates a new state with the initial set of states contained in the array of states passed in. Duplicate entries are ignored.

Method Detail

add

public boolean add(AccessibleState state)
Enabled: Adds a new state to the current state set if it is not already present. If the state is already in the state set, the state set is unchanged and the return value is false. Otherwise, the state is added to the state set and the return value is true.

Parameters:
state - the state to add to the state set
Returns:
true if state is added to the state set; false if the state set is unchanged

addAll

public void addAll(AccessibleState[] states)
Enabled: Adds all of the states to the existing state set. Duplicate entries are ignored.


remove

public boolean remove(AccessibleState state)
Enabled: Removes a state from the current state set. If the state is not in the set, the state set will be unchanged and the return value will be false. If the state is in the state set, it will be removed from the set and the return value will be true.

Parameters:
state - the state to remove from the state set
Returns:
true if the state is in the state set; false if the state set will be unchanged

clear

public void clear()
Enabled: Removes all the states from the current state set.


contains

public boolean contains(AccessibleState state)
Enabled: Checks if the current state is in the state set.

Parameters:
state - the state
Returns:
true if the state is in the state set; otherwise false

toArray

public AccessibleState[] toArray()
Enabled: Returns the current state set as an array of AccessibleState

Returns:
AccessibleState array containing the current state.

toString

public String toString()
Suppressed: Creates a localized String representing all the states in the set using the default locale.

Overrides:
toString in class Object
Returns:
comma separated localized String
See Also:
AccessibleBundle.toDisplayString(java.lang.String, java.util.Locale)


comments?