All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.sun.java.swing.JTextPane

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----com.sun.java.swing.JComponent
                           |
                           +----com.sun.java.swing.text.JTextComponent
                                   |
                                   +----com.sun.java.swing.JTextPane

public class JTextPane
extends JTextComponent
A text component that can be marked up with attributes that are represented graphically.


Constructor Index

 o JTextPane()
Constructs a new JTextPane.
 o JTextPane(StyledDocument)
Constructs a new JTextPane, with a specified document model and style context.

Method Index

 o addStyle(String, Style)
Adds a new style into the logical style hierarchy.
 o getCharacterAttributes()
Fetches the character attributes in effect at the current location of the caret.
 o getInputAttributes()
 o getLogicalStyle()
Fetches the logical style assigned to the paragraph represented by the current position of the caret.
 o getParagraphAttributes()
Fetches the current paragraph attributes in effect at the location of the caret.
 o getScrollableTracksViewportWidth()
Return true if a viewport should always force the width of this Scrollable to match the width of the viewport.
 o getStyle(String)
Fetches a named style previously added.
 o getStyledDocument()
Fetches the model associated with the editor.
 o getUIClassID()
 o insertComponent(Component)
Inserts a component into the document as a replacement for the currently selected content.
 o insertIcon(Icon)
Inserts an icon into the document as a replacement for the currently selected content.
 o isManagingFocus()
Turn off tab traversal once focus gained.
 o removeCharacterAttributes(String[])
Removes attributes with the given names for the current selection.
 o removeParagraphAttributes(String[])
Removes attributes with the given names for the current selection.
 o removeStyle(String)
Removes a named style previously added to the document.
 o replaceSelection(String)
Replaces the currently selected content with new content represented by the given string.
 o setCharacterAttributes(AttributeSet, boolean)
Applies the given attributes to character content.
 o setDocument(Document)
Associates the editor with a text document.
 o setLogicalStyle(Style)
Sets the logical style to use for the paragraph at the current caret position.
 o setParagraphAttributes(AttributeSet, boolean)
Applies the given attributes to paragraphs.
 o setStyledDocument(StyledDocument)
Associates the editor with a text document.
 o setUI(TextUI)
Sets the UI for the pane.

Constructors

 o JTextPane
 public JTextPane()
Constructs a new JTextPane.

 o JTextPane
 public JTextPane(StyledDocument doc)
Constructs a new JTextPane, with a specified document model and style context.

Parameters:
doc - the document model

Methods

 o getUIClassID
 public String getUIClassID()
Returns:
"TextPaneUI"
Overrides:
getUIClassID in class JComponent
See Also:
getUIClassID, getUI
 o setUI
 public void setUI(TextUI ui)
Sets the UI for the pane.

Parameters:
ui - the UI
Overrides:
setUI in class JTextComponent
 o isManagingFocus
 public boolean isManagingFocus()
Turn off tab traversal once focus gained.

Overrides:
isManagingFocus in class JComponent
 o 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
 o 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
 o getStyledDocument
 public StyledDocument getStyledDocument()
Fetches the model associated with the editor.

Returns:
the model
 o 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
 o 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
 o 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
 o 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
 o removeStyle
 public void removeStyle(String nm)
Removes a named style previously added to the document.

Parameters:
nm - the name of the style to remove
 o getStyle
 public Style getStyle(String nm)
Fetches a named style previously added.

Parameters:
nm - the name of the style
Returns:
the style
 o 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
 o getLogicalStyle
 public Style getLogicalStyle()
Fetches the logical style assigned to the paragraph represented by the current position of the caret.

Returns:
the style
 o getCharacterAttributes
 public AttributeSet getCharacterAttributes()
Fetches the character attributes in effect at the current location of the caret.

Returns:
the attributes
 o 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
 o 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
 o getParagraphAttributes
 public AttributeSet getParagraphAttributes()
Fetches the current paragraph attributes in effect at the location of the caret.

Returns:
the attributes
 o 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
 o removeParagraphAttributes
 public void removeParagraphAttributes(String names[])
Removes attributes with the given names for the current selection.

Parameters:
names - the attribute names
 o getInputAttributes
 public AttributeSet getInputAttributes()
 o 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