All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.swing.JTextPane
java.lang.Object
|
+----java.awt.Component
|
+----java.awt.Container
|
+----java.awt.swing.JComponent
|
+----java.awt.swing.text.JTextComponent
|
+----java.awt.swing.JTextPane
- public class JTextPane
- extends JTextComponent
A text component that can be marked up with attributes that are
represented graphically.
JTextPane()
- Constructs a new JTextPane.
JTextPane(StyledDocument)
- Constructs a new JTextPane, with a specified document model and
style context.
addStyle(String, Style)
- Adds a new style into the logical style hierarchy.
getCharacterAttributes()
- Fetches the character attributes in effect at the
current location of the caret.
getInputAttributes()
- Gets the input attributes for the pane.
getLogicalStyle()
- Fetches the logical style assigned to the paragraph
represented by the current position of the caret.
getParagraphAttributes()
- Fetches the current paragraph attributes in effect
at the location of the caret.
getScrollableTracksViewportWidth()
- Return true if a viewport should always force the width of this
Scrollable to match the width of the viewport.
getStyle(String)
- Fetches a named style previously added.
getStyledDocument()
- Fetches the model associated with the editor.
getUIClassID()
- Returns the class ID for the UI.
insertComponent(Component)
- Inserts a component into the document as a replacement
for the currently selected content.
insertIcon(Icon)
- Inserts an icon into the document as a replacement
for the currently selected content.
isManagingFocus()
- Turn off tab traversal once focus gained.
removeCharacterAttributes(String[])
- Removes attributes with the given names for the current
selection.
removeParagraphAttributes(String[])
- Removes attributes with the given names for the current
selection.
removeStyle(String)
- Removes a named style previously added to the document.
replaceSelection(String)
- Replaces the currently selected content with new content
represented by the given string.
setCharacterAttributes(AttributeSet, boolean)
- Applies the given attributes to character
content.
setDocument(Document)
- Associates the editor with a text document.
setLogicalStyle(Style)
- Sets the logical style to use for the paragraph at the
current caret position.
setParagraphAttributes(AttributeSet, boolean)
- Applies the given attributes to paragraphs.
setStyledDocument(StyledDocument)
- Associates the editor with a text document.
setUI(TextUI)
- Sets the UI for the pane.
JTextPane
public JTextPane()
- Constructs a new JTextPane.
JTextPane
public JTextPane(StyledDocument doc)
- Constructs a new JTextPane, with a specified document model and
style context.
- Parameters:
- doc - the document model
getUIClassID
public String getUIClassID()
- Returns the class ID for the UI.
- Returns:
- the ID
- Overrides:
- getUIClassID in class JComponent
- See Also:
- getUIClassID, getUI
setUI
public void setUI(TextUI ui)
- Sets the UI for the pane.
- Parameters:
- ui - the UI
- Overrides:
- setUI in class JTextComponent
isManagingFocus
public boolean isManagingFocus()
- Turn off tab traversal once focus gained.
- Overrides:
- isManagingFocus in class JComponent
setDocument
public void setDocument(Document doc)
- Associates the editor with a text document. This
must be a StyledDocument.
- Parameters:
- doc - the document to display/edit
- Throws:
IllegalArgumentException
- if doc can't
be narrowed to a StyledDocument which is the
required type of model for this text component
- Overrides:
- setDocument in class JTextComponent
setStyledDocument
public void setStyledDocument(StyledDocument doc)
- Associates the editor with a text document.
The currently registered factory is used to build a view for
the document, which gets displayed by the editor.
- Parameters:
- doc - the document to display/edit
getStyledDocument
public StyledDocument getStyledDocument()
- Fetches the model associated with the editor.
- Returns:
- the model
replaceSelection
public void replaceSelection(String content)
- Replaces the currently selected content with new content
represented by the given string. If there is no selection
this amounts to an insert of the given text. If there
is no replacement text this amounts to a removal of the
current selection. The replacement text will have the
attributes currently defined for input.
- Parameters:
- content - the content to replace the selection with
- Overrides:
- replaceSelection in class JTextComponent
insertComponent
public void insertComponent(Component c)
- Inserts a component into the document as a replacement
for the currently selected content. If there is no
selection the component is effectively inserted at the
current position of the caret. This is represented in
the associated document as an attribute of one character
of content.
- Parameters:
- c - the component to insert
insertIcon
public void insertIcon(Icon g)
- Inserts an icon into the document as a replacement
for the currently selected content. If there is no
selection the icon is effectively inserted at the
current position of the caret. This is represented in
the associated document as an attribute of one character
of content.
- Parameters:
- g - the icon to insert
- See Also:
- Icon
addStyle
public Style addStyle(String nm,
Style parent)
- Adds a new style into the logical style hierarchy. Style attributes
resolve from bottom up so an attribute specified in a child
will override an attribute specified in the parent.
- Parameters:
- 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.
- Returns:
- the new Style
removeStyle
public void removeStyle(String nm)
- Removes a named style previously added to the document.
- Parameters:
- nm - the name of the style to remove
getStyle
public Style getStyle(String nm)
- Fetches a named style previously added.
- Parameters:
- nm - the name of the style
- Returns:
- the style
setLogicalStyle
public void setLogicalStyle(Style s)
- Sets the logical style to use for the paragraph at the
current caret position. If attributes aren't explicity set
for character and paragraph attributes they will resolve
through the logical style assigned to the paragraph, which
in term may resolve through some hierarchy completely
independant of the element hierarchy in the document.
- Parameters:
- s - the logical style to assign to the paragraph
getLogicalStyle
public Style getLogicalStyle()
- Fetches the logical style assigned to the paragraph
represented by the current position of the caret.
- Returns:
- the style
getCharacterAttributes
public AttributeSet getCharacterAttributes()
- Fetches the character attributes in effect at the
current location of the caret.
- Returns:
- the attributes
setCharacterAttributes
public void setCharacterAttributes(AttributeSet attr,
boolean replace)
- Applies the given attributes to character
content. If there is a selection, the attributes
are applied to the selection range. If there
is no selection, the attributes are applied to
the input attribute set which defines the attributes
for any new text that gets inserted.
- Parameters:
- attr - the attributes
- replace - if true, then replace the existing attributes first
removeCharacterAttributes
public void removeCharacterAttributes(String[] names)
- Removes attributes with the given names for the current
selection.
If there is no selection, the attributes are removed from
the input attributes definition.
- Parameters:
- names - the attribute names
getParagraphAttributes
public AttributeSet getParagraphAttributes()
- Fetches the current paragraph attributes in effect
at the location of the caret.
- Returns:
- the attributes
setParagraphAttributes
public void setParagraphAttributes(AttributeSet attr,
boolean replace)
- Applies the given attributes to paragraphs. If
there is a selection, the attributes are applied
to the paragraphs that intersect the selection.
if there is no selection, the attributes are applied
to the paragraph at the current caret position.
- Parameters:
- attr - the attributes
- replace - if true, replace the existing attributes first
removeParagraphAttributes
public void removeParagraphAttributes(String[] names)
- Removes attributes with the given names for the current
selection.
- Parameters:
- names - the attribute names
getInputAttributes
public AttributeSet getInputAttributes()
- Gets the input attributes for the pane.
- Returns:
- the attributes
getScrollableTracksViewportWidth
public boolean getScrollableTracksViewportWidth()
- Return true if a viewport should always force the width of this
Scrollable to match the width of the viewport.
- Returns:
- True if a viewport should force the Scrollables width to match its own.
- Overrides:
- getScrollableTracksViewportWidth in class JTextComponent
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature