AccessibleAttributeSequencepublic class AccessibleAttributeSequence extends Object This class collects together the span of text that share the same
contiguous set of attributes, along with that set of attributes. It
is used by implementors of the class AccessibleContext in
order to generate ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED events. |
Fields Summary |
---|
public int | startIndexThe start index of the text sequence | public int | endIndexThe end index of the text sequence | public AttributeSet | attributesThe text attributes |
Constructors Summary |
---|
public AccessibleAttributeSequence(int start, int end, AttributeSet attr)Constructs an AccessibleAttributeSequence with the given
parameters.
startIndex = start;
endIndex = end;
attributes = attr;
|
|