|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Interface for a generic styled document.
Fields inherited from interface javax.swing.text.Document |
StreamDescriptionProperty, TitleProperty |
Method Summary | |
Style |
addStyle(String nm,
Style parent)
Adds a new style into the logical style hierarchy. |
Color |
getBackground(AttributeSet attr)
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 attr)
Takes a set of attributes and turn it into a font specification. |
Color |
getForeground(AttributeSet attr)
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 nm)
Fetches a named style previously added. |
void |
removeStyle(String nm)
Removes a named style previously added to the document. |
void |
setCharacterAttributes(int offset,
int length,
AttributeSet s,
boolean replace)
Changes the content element attributes used for the given range of existing content in the document. |
void |
setLogicalStyle(int pos,
Style s)
Sets the logical style to use for the paragraph at the given position. |
void |
setParagraphAttributes(int offset,
int length,
AttributeSet s,
boolean replace)
Sets paragraph attributes. |
Methods inherited from interface javax.swing.text.Document |
addDocumentListener, addUndoableEditListener, createPosition, getDefaultRootElement, getEndPosition, getLength, getProperty, getRootElements, getStartPosition, getText, getText, insertString, putProperty, remove, removeDocumentListener, removeUndoableEditListener, render |
Method Detail |
public Style addStyle(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.public void removeStyle(String nm)
nm
- the name of the style to removepublic Style getStyle(String nm)
nm
- the name of the stylepublic void setCharacterAttributes(int offset, int length, AttributeSet s, boolean replace)
offset
- the start of the change >= 0length
- the length of the change >= 0s
- 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.public void setParagraphAttributes(int offset, int length, AttributeSet s, boolean replace)
offset
- the start of the change >= 0length
- the length of the change >= 0s
- 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.public void setLogicalStyle(int pos, Style s)
pos
- the starting position >= 0s
- the style to setpublic Style getLogicalStyle(int p)
p
- the position >= 0public Element getParagraphElement(int pos)
pos
- the offset >= 0public Element getCharacterElement(int pos)
pos
- the offset >= 0public Color getForeground(AttributeSet attr)
attr
- the set of attributespublic Color getBackground(AttributeSet attr)
attr
- the set of attributespublic Font getFont(AttributeSet attr)
attr
- the set of attributes
|
JavaTM 2 Platform Std. Ed. v1.3.1 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.