public interface StyledDocument extends Document
StreamDescriptionProperty, TitleProperty| Modifier and Type | Method and Description |
|---|---|
Style |
addStyle(String
Adds a new style into the logical style hierarchy.
|
Color |
getBackground(AttributeSet
Takes a set of attributes and turn it into a background color specification.
|
Element |
getCharacterElement(int pos)
Gets the element that represents the character that is at the given offset within the document.
|
Font |
getFont(AttributeSet
Takes a set of attributes and turn it into a font specification.
|
Color |
getForeground(AttributeSet
Takes a set of attributes and turn it into a foreground color specification.
|
Style |
getLogicalStyle(int p)
Gets a logical style for a given position in a paragraph.
|
Element |
getParagraphElement(int pos)
Gets the element that represents the paragraph that encloses the given offset within the document.
|
Style |
getStyle(String
Fetches a named style previously added.
|
void |
removeStyle(String
Removes a named style previously added to the document.
|
void |
setCharacterAttributes(int offset, int length, AttributeSet
Changes the content element attributes used for the given range of existing content in the document.
|
void |
setLogicalStyle(int pos, Style
Sets the logical style to use for the paragraph at the given position.
|
void |
setParagraphAttributes(int offset, int length, AttributeSet
Sets paragraph attributes.
|
addDocumentListener, addUndoableEditListener, createPosition, getDefaultRootElement, getEndPosition, getLength, getProperty, getRootElements, getStartPosition, getText, getText, insertString, putProperty, remove, removeDocumentListener, removeUndoableEditListener, renderStyleaddStyle(String nm, Style parent)
nm - the name of the style (must be unique within the collection of named styles). The name may be null if the style is unnamed, but the caller is responsible for managing the reference returned as an unnamed style can't be fetched by name. An unnamed style may be useful for things like character attribute overrides such as found in a style run.
parent - the parent style. This may be null if unspecified attributes need not be resolved in some other style.
void removeStyle(Stringnm)
nm - the name of the style to remove
StylegetStyle(String nm)
nm - the name of the style
void setCharacterAttributes(int offset,
int length,
AttributeSet s,
boolean replace)
offset - the start of the change >= 0
length - the length of the change >= 0
s - the non-null attributes to change to. Any attributes defined will be applied to the text for the given range.
replace - indicates whether or not the previous attributes should be cleared before the new attributes as set. If true, the operation will replace the previous attributes entirely. If false, the new attributes will be merged with the previous attributes.
void setParagraphAttributes(int offset,
int length,
AttributeSet s,
boolean replace)
offset - the start of the change >= 0
length - the length of the change >= 0
s - the non-null attributes to change to. Any attributes defined will be applied to the text for the given range.
replace - indicates whether or not the previous attributes should be cleared before the new attributes are set. If true, the operation will replace the previous attributes entirely. If false, the new attributes will be merged with the previous attributes.
void setLogicalStyle(int pos,
Style s)
pos - the starting position >= 0
s - the style to set
StylegetLogicalStyle(int p)
p - the position >= 0
ElementgetParagraphElement(int pos)
pos - the offset >= 0
ElementgetCharacterElement(int pos)
pos - the offset >= 0
ColorgetForeground(AttributeSet attr)
attr - the set of attributes
ColorgetBackground(AttributeSet attr)
attr - the set of attributes
FontgetFont(AttributeSet attr)
attr - the set of attributes