AccessibleAttributeSequence (Java SE 15 & JDK 15) (original) (raw)
public 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 generateACCESSIBLE_TEXT_ATTRIBUTES_CHANGED
events.
See Also:
AccessibleContext, AccessibleContext.ACCESSIBLE_TEXT_ATTRIBUTES_CHANGED
Field Summary
Fields
Modifier and Type | Field | Description |
---|---|---|
AttributeSet | attributes | The text attributes. |
int | endIndex | The end index of the text sequence. |
int | startIndex | The start index of the text sequence. |
Constructor Summary
Constructors
Constructor | Description |
---|---|
AccessibleAttributeSequence​(int start, int end,AttributeSet attr) | Constructs an AccessibleAttributeSequence with the given parameters. |
Method Summary
Methods declared in class java.lang.Object
[clone](../../../java.base/java/lang/Object.html#clone%28%29), [equals](../../../java.base/java/lang/Object.html#equals%28java.lang.Object%29), [finalize](../../../java.base/java/lang/Object.html#finalize%28%29), [getClass](../../../java.base/java/lang/Object.html#getClass%28%29), [hashCode](../../../java.base/java/lang/Object.html#hashCode%28%29), [notify](../../../java.base/java/lang/Object.html#notify%28%29), [notifyAll](../../../java.base/java/lang/Object.html#notifyAll%28%29), [toString](../../../java.base/java/lang/Object.html#toString%28%29), [wait](../../../java.base/java/lang/Object.html#wait%28%29), [wait](../../../java.base/java/lang/Object.html#wait%28long%29), [wait](../../../java.base/java/lang/Object.html#wait%28long,int%29)
Field Details
startIndex
public int startIndex
The start index of the text sequence.endIndex
public int endIndex
The end index of the text sequence.attributes
The text attributes.
Constructor Details
AccessibleAttributeSequence
public AccessibleAttributeSequence​(int start, int end,AttributeSet attr)
Constructs anAccessibleAttributeSequence
with the given parameters.
Parameters:
start
- the beginning index of the span of text
end
- the ending index of the span of text
attr
- theAttributeSet
shared by this text span
Since:
1.6