public class

BasicEditorPaneUI

extends BasicTextUI
java.lang.Object
   ↳ javax.swing.plaf.ComponentUI
     ↳ javax.swing.plaf.TextUI
       ↳ javax.swing.plaf.basic.BasicTextUI
         ↳ javax.swing.plaf.basic.BasicEditorPaneUI
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Provides the look and feel for a JEditorPane.

Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeansTM has been added to the java.beans package. Please see XMLEncoder.

Summary

Public Constructors
BasicEditorPaneUI()
Creates a new BasicEditorPaneUI.
Public Methods
static ComponentUI createUI(JComponent c)
Creates a UI for the JTextPane.
EditorKit getEditorKit(JTextComponent tc)
Fetches the EditorKit for the UI.
void installUI(JComponent c)
Installs the UI for a component.
void uninstallUI(JComponent c)
Deinstalls the UI for a component.
Protected Methods
String getPropertyPrefix()
Fetches the name used as a key to lookup properties through the UIManager.
void propertyChange(PropertyChangeEvent evt)
This method gets called when a bound property is changed on the associated JTextComponent.
[Expand]
Inherited Methods
From class javax.swing.plaf.basic.BasicTextUI
From class javax.swing.plaf.TextUI
From class javax.swing.plaf.ComponentUI
From class java.lang.Object
From interface javax.swing.text.ViewFactory

Public Constructors

public BasicEditorPaneUI ()

Creates a new BasicEditorPaneUI.

Public Methods

public static ComponentUI createUI (JComponent c)

Creates a UI for the JTextPane.

Parameters
c the JTextPane component
Returns
  • the UI

public EditorKit getEditorKit (JTextComponent tc)

Fetches the EditorKit for the UI. This is whatever is currently set in the associated JEditorPane.

Parameters
tc the text component for which this UI is installed
Returns
  • the editor capabilities

public void installUI (JComponent c)

Installs the UI for a component. This does the following things.

  1. Set the associated component to opaque (can be changed easily by a subclass or on JTextComponent directly), which is the most common case. This will cause the component's background color to be painted.
  2. Install the default caret and highlighter into the associated component.
  3. Attach to the editor and model. If there is no model, a default one is created.
  4. create the view factory and the view hierarchy used to represent the model.

Parameters
c the editor component

public void uninstallUI (JComponent c)

Deinstalls the UI for a component. This removes the listeners, uninstalls the highlighter, removes views, and nulls out the keymap.

Parameters
c the editor component

Protected Methods

protected String getPropertyPrefix ()

Fetches the name used as a key to lookup properties through the UIManager. This is used as a prefix to all the standard text properties.

Returns
  • the name ("EditorPane")

protected void propertyChange (PropertyChangeEvent evt)

This method gets called when a bound property is changed on the associated JTextComponent. This is a hook which UI implementations may change to reflect how the UI displays bound properties of JTextComponent subclasses. This is implemented to rebuild the ActionMap based upon an EditorKit change.

Parameters
evt the property change event