JTextComponent (Java SE 19 & JDK 19) (original) (raw)
All Implemented Interfaces:
[ImageObserver](../../../java/awt/image/ImageObserver.html "interface in java.awt.image")
, [MenuContainer](../../../java/awt/MenuContainer.html "interface in java.awt")
, [Serializable](../../../../java.base/java/io/Serializable.html "interface in java.io")
, [Accessible](../../accessibility/Accessible.html "interface in javax.accessibility")
, [Scrollable](../Scrollable.html "interface in javax.swing")
Direct Known Subclasses:
[JEditorPane](../JEditorPane.html "class in javax.swing")
, [JTextArea](../JTextArea.html "class in javax.swing")
, [JTextField](../JTextField.html "class in javax.swing")
JTextComponent
is the base class for swing text components. It tries to be compatible with thejava.awt.TextComponent
class where it can reasonably do so. Also provided are other services for additional flexibility (beyond the pluggable UI and bean support). You can find information on how to use the functionality this class provides inGeneral Rules for Using Text Components, a section in The Java Tutorial.
Caret Changes
The caret is a pluggable object in swing text components. Notification of changes to the caret position and the selection are sent to implementations of the CaretListener
interface that have been registered with the text component. The UI will install a default caret unless a customized caret has been set.
By default the caret tracks all the document changes performed on the Event Dispatching Thread and updates it's position accordingly if an insertion occurs before or at the caret position or a removal occurs before the caret position. DefaultCaret
tries to make itself visible which may lead to scrolling of a text component within JScrollPane
. The default caret behavior can be changed by the DefaultCaret.setUpdatePolicy(int) method.
Note: Non-editable text components also have a caret though it may not be painted.
Commands
Text components provide a number of commands that can be used to manipulate the component. This is essentially the way that the component expresses its capabilities. These are expressed in terms of the swing Action
interface, using the TextAction
implementation. The set of commands supported by the text component can be found with the getActions() method. These actions can be bound to key events, fired from buttons, etc.
Text Input
The text components support flexible and internationalized text input, using keymaps and the input method framework, while maintaining compatibility with the AWT listener model.
A Keymap lets an application bind key strokes to actions. In order to allow keymaps to be shared across multiple text components, they can use actions that extend TextAction
.TextAction
can determine which JTextComponent
most recently has or had focus and therefore is the subject of the action (In the case that the ActionEvent
sent to the action doesn't contain the target text component as its source).
The Input Method Framework lets text components interact with input methods, separate software components that preprocess events to let users enter thousands of different characters using keyboards with far fewer keys.JTextComponent
is an active client of the framework, so it implements the preferred user interface for interacting with input methods. As a consequence, some key events do not reach the text component because they are handled by an input method, and some text input reaches the text component as committed text within an InputMethodEvent instead of as a key event. The complete text input is the combination of the characters inkeyTyped
key events and committed text in input method events.
The AWT listener model lets applications attach event listeners to components in order to bind events to actions. Swing encourages the use of keymaps instead of listeners, but maintains compatibility with listeners by giving the listeners a chance to steal an event by consuming it.
Keyboard event and input method events are handled in the following stages, with each stage capable of consuming the event:
Stages of keyboard and input method event handling
Stage | KeyEvent | InputMethodEvent |
---|---|---|
1. | input methods | (generated here) |
2. | focus manager | |
3. | registered key listeners | registered input method listeners |
4. | input method handling in JTextComponent | |
5. | keymap handling using the current keymap | |
6. | keyboard handling in JComponent (e.g. accelerators, component navigation, etc.) |
To maintain compatibility with applications that listen to key events but are not aware of input method events, the input method handling in stage 4 provides a compatibility mode for components that do not process input method events. For these components, the committed text is converted to keyTyped key events and processed in the key event pipeline starting at stage 3 instead of in the input method event pipeline.
By default the component will create a keymap (named DEFAULT_KEYMAP) that is shared by all JTextComponent instances as the default keymap. Typically a look-and-feel implementation will install a different keymap that resolves to the default keymap for those bindings not found in the different keymap. The minimal bindings include:
- inserting content into the editor for the printable keys.
- removing content with the backspace and del keys.
- caret movement forward and backward
Model/View Split
The text components have a model-view split. A text component pulls together the objects used to represent the model, view, and controller. The text document model may be shared by other views which act as observers of the model (e.g. a document may be shared by multiple components).
The model is defined by the Document interface. This is intended to provide a flexible text storage mechanism that tracks change during edits and can be extended to more sophisticated models. The model interfaces are meant to capture the capabilities of expression given by SGML, a system used to express a wide variety of content. Each modification to the document causes notification of the details of the change to be sent to all observers in the form of aDocumentEvent which allows the views to stay up to date with the model. This event is sent to observers that have implemented theDocumentListener interface and registered interest with the model being observed.
Location Information
The capability of determining the location of text in the view is provided. There are two methods, modelToView(int) and viewToModel(java.awt.Point) for determining this information.
Undo/Redo support
Support for an edit history mechanism is provided to allow undo/redo operations. The text component does not itself provide the history buffer by default, but does provide the UndoableEdit
records that can be used in conjunction with a history buffer to provide the undo/redo support. The support is provided by the Document model, which allows one to attach UndoableEditListener implementations.
Thread Safety
The swing text components provide some support of thread safe operations. Because of the high level of configurability of the text components, it is possible to circumvent the protection provided. The protection primarily comes from the model, so the documentation of AbstractDocument
describes the assumptions of the protection provided. The methods that are safe to call asynchronously are marked with comments.
Newlines
For a discussion on how newlines are handled, seeDefaultEditorKit.
Printing support
Several print methods are provided for basic document printing. If more advanced printing is needed, use thegetPrintable(java.text.MessageFormat, java.text.MessageFormat) method.
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 JavaBeans has been added to the java.beans
package. Please see XMLEncoder.
See Also:
Nested Class Summary
Nested Classesclass
This class implements accessibility support for theJTextComponent
class.static final class
Represents a drop location for JTextComponent
s.static class
Binding record for creating key bindings.
Field Summary
Fields
The default keymap that will be shared by allJTextComponent
instances unless they have had a different keymap set.
The bound property name for the focus accelerator.
Constructor Summary
Constructors
Creates a new JTextComponent
.
Method Summary
void
Adds a caret listener for notification of any changes to the caret.
Adds a new keymap into the keymap hierarchy.void
[copy](#copy%28%29)()
Transfers the currently selected range in the associated text model to the system clipboard, leaving the contents in the text model.void
[cut](#cut%28%29)()
Transfers the currently selected range in the associated text model to the system clipboard, removing the contents from the model.protected void
Notifies all listeners that have registered interest for notification on this event type.
Gets the AccessibleContext
associated with thisJTextComponent
.
Fetches the command list for the editor.[getCaret](#getCaret%28%29)()
Fetches the caret that allows text-oriented navigation over the view.
Fetches the current color used to render the caret.
Returns an array of all the caret listeners registered on this text component.int
Returns the position of the text insertion caret for the text component.
Fetches the current color used to render the disabled text.
Fetches the model associated with the editor.boolean
Returns whether or not automatic drag handling is enabled.
Returns the location that this component should visually indicate as the drop location during a DnD operation over the component, or null
if no location is to currently be shown.
Returns the drop mode for this component.char
Returns the key accelerator that will cause the receiving text component to get the focus.
Fetches the object responsible for making highlights.
Gets the input method request handler which supports requests from input methods for this component.[getKeymap](#getKeymap%28%29)()
Fetches the keymap currently active in this text component.
Fetches a named keymap previously added to the document.[getMargin](#getMargin%28%29)()
Returns the margin between the text component's border and its text.
Returns the NavigationFilter
.
Returns the preferred size of the viewport for a view component.
Returns a Printable
to use for printing the content of thisJTextComponent
.int
[getScrollableBlockIncrement](#getScrollableBlockIncrement%28java.awt.Rectangle,int,int%29)([Rectangle](../../../java/awt/Rectangle.html "class in java.awt") visibleRect, int orientation, int direction)
Components that display logical rows or columns should compute the scroll increment that will completely expose one block of rows or columns, depending on the value of orientation.boolean
Returns true if a viewport should always force the height of thisScrollable
to match the height of the viewport.boolean
Returns true if a viewport should always force the width of thisScrollable
to match the width of the viewport.int
[getScrollableUnitIncrement](#getScrollableUnitIncrement%28java.awt.Rectangle,int,int%29)([Rectangle](../../../java/awt/Rectangle.html "class in java.awt") visibleRect, int orientation, int direction)
Components that display logical rows or columns should compute the scroll increment that will completely expose one new row or column, depending on the value of orientation.
Returns the selected text contained in thisTextComponent
.
Fetches the current color used to render the selected text.
Fetches the current color used to render the selection.int
Returns the selected text's end position.int
Returns the selected text's start position.[getText](#getText%28%29)()
Returns the text contained in this TextComponent
.[getText](#getText%28int,int%29)(int offs, int len)
Fetches a portion of the text represented by the component.
Returns the string to be used as the tooltip for event
.[getUI](#getUI%28%29)()
Fetches the user-interface factory for this text-oriented editor.boolean
Returns the boolean indicating whether thisTextComponent
is editable or not.static void
Loads a keymap with a bunch of bindings.[modelToView](#modelToView%28int%29)(int pos)
[modelToView2D](#modelToView2D%28int%29)(int pos)
Converts the given location in the model to a place in the view coordinate system.void
[moveCaretPosition](#moveCaretPosition%28int%29)(int pos)
Moves the caret to a new position, leaving behind a mark defined by the last time setCaretPosition
was called.
Returns a string representation of this JTextComponent
.void
[paste](#paste%28%29)()
Transfers the contents of the system clipboard into the associated text model.boolean
[print](#print%28%29)()
A convenience print method that displays a print dialog, and then prints this JTextComponent
in interactive mode with no header or footer text.boolean
A convenience print method that displays a print dialog, and then prints this JTextComponent
in interactive mode with the specified header and footer text.boolean
Prints the content of this JTextComponent
.void
Initializes from a stream.void
Removes a caret listener.
Removes a named keymap previously added to the document.void
Replaces the currently selected content with new content represented by the given string.protected void
Restores composed text previously saved by saveComposedText
.protected boolean
[saveComposedText](#saveComposedText%28int%29)(int pos)
Saves composed text around the specified position.void
[select](#select%28int,int%29)(int selectionStart, int selectionEnd)
Selects the text between the specified start and end positions.void
[selectAll](#selectAll%28%29)()
Selects all the text in the TextComponent
.void
Sets the caret to be used.void
Sets the current color used to render the caret.void
[setCaretPosition](#setCaretPosition%28int%29)(int position)
Sets the position of the text insertion caret for theTextComponent
.void
Sets the current color used to render the disabled text.void
Associates the editor with a text document.void
[setDragEnabled](#setDragEnabled%28boolean%29)(boolean b)
Turns on or off automatic drag handling.final void
Sets the drop mode for this component.void
[setEditable](#setEditable%28boolean%29)(boolean b)
Sets the specified boolean to indicate whether or not thisTextComponent
should be editable.void
[setFocusAccelerator](#setFocusAccelerator%28char%29)(char aKey)
Sets the key accelerator that will cause the receiving text component to get the focus.void
Sets the highlighter to be used.void
Sets the keymap to use for binding events to actions.void
Sets margin space between the text component's border and its text.void
Sets the NavigationFilter
.void
Sets the current color used to render the selected text.void
Sets the current color used to render the selection.void
[setSelectionEnd](#setSelectionEnd%28int%29)(int selectionEnd)
Sets the selection end to the specified position.void
[setSelectionStart](#setSelectionStart%28int%29)(int selectionStart)
Sets the selection start to the specified position.void
Sets the text of this TextComponent
to the specified text.void
Sets the user-interface factory for this text-oriented editor.void
[updateUI](#updateUI%28%29)()
Reloads the pluggable UI.int
int
Converts the given place in the view coordinate system to the nearest representative location in the model.void
Stores the contents of the model into the given stream.
Methods declared in class javax.swing.JComponent
[addAncestorListener](../JComponent.html#addAncestorListener%28javax.swing.event.AncestorListener%29), [addNotify](../JComponent.html#addNotify%28%29), [addVetoableChangeListener](../JComponent.html#addVetoableChangeListener%28java.beans.VetoableChangeListener%29), [computeVisibleRect](../JComponent.html#computeVisibleRect%28java.awt.Rectangle%29), [contains](../JComponent.html#contains%28int,int%29), [createToolTip](../JComponent.html#createToolTip%28%29), [disable](../JComponent.html#disable%28%29), [enable](../JComponent.html#enable%28%29), [firePropertyChange](../JComponent.html#firePropertyChange%28java.lang.String,boolean,boolean%29), [firePropertyChange](../JComponent.html#firePropertyChange%28java.lang.String,int,int%29), [fireVetoableChange](../JComponent.html#fireVetoableChange%28java.lang.String,java.lang.Object,java.lang.Object%29), [getActionForKeyStroke](../JComponent.html#getActionForKeyStroke%28javax.swing.KeyStroke%29), [getActionMap](../JComponent.html#getActionMap%28%29), [getAlignmentX](../JComponent.html#getAlignmentX%28%29), [getAlignmentY](../JComponent.html#getAlignmentY%28%29), [getAncestorListeners](../JComponent.html#getAncestorListeners%28%29), [getAutoscrolls](../JComponent.html#getAutoscrolls%28%29), [getBaseline](../JComponent.html#getBaseline%28int,int%29), [getBaselineResizeBehavior](../JComponent.html#getBaselineResizeBehavior%28%29), [getBorder](../JComponent.html#getBorder%28%29), [getBounds](../JComponent.html#getBounds%28java.awt.Rectangle%29), [getClientProperty](../JComponent.html#getClientProperty%28java.lang.Object%29), [getComponentGraphics](../JComponent.html#getComponentGraphics%28java.awt.Graphics%29), [getComponentPopupMenu](../JComponent.html#getComponentPopupMenu%28%29), [getConditionForKeyStroke](../JComponent.html#getConditionForKeyStroke%28javax.swing.KeyStroke%29), [getDebugGraphicsOptions](../JComponent.html#getDebugGraphicsOptions%28%29), [getDefaultLocale](../JComponent.html#getDefaultLocale%28%29), [getFontMetrics](../JComponent.html#getFontMetrics%28java.awt.Font%29), [getGraphics](../JComponent.html#getGraphics%28%29), [getHeight](../JComponent.html#getHeight%28%29), [getInheritsPopupMenu](../JComponent.html#getInheritsPopupMenu%28%29), [getInputMap](../JComponent.html#getInputMap%28%29), [getInputMap](../JComponent.html#getInputMap%28int%29), [getInputVerifier](../JComponent.html#getInputVerifier%28%29), [getInsets](../JComponent.html#getInsets%28%29), [getInsets](../JComponent.html#getInsets%28java.awt.Insets%29), [getListeners](../JComponent.html#getListeners%28java.lang.Class%29), [getLocation](../JComponent.html#getLocation%28java.awt.Point%29), [getMaximumSize](../JComponent.html#getMaximumSize%28%29), [getMinimumSize](../JComponent.html#getMinimumSize%28%29), [getNextFocusableComponent](../JComponent.html#getNextFocusableComponent%28%29), [getPopupLocation](../JComponent.html#getPopupLocation%28java.awt.event.MouseEvent%29), [getPreferredSize](../JComponent.html#getPreferredSize%28%29), [getRegisteredKeyStrokes](../JComponent.html#getRegisteredKeyStrokes%28%29), [getRootPane](../JComponent.html#getRootPane%28%29), [getSize](../JComponent.html#getSize%28java.awt.Dimension%29), [getToolTipLocation](../JComponent.html#getToolTipLocation%28java.awt.event.MouseEvent%29), [getToolTipText](../JComponent.html#getToolTipText%28%29), [getTopLevelAncestor](../JComponent.html#getTopLevelAncestor%28%29), [getTransferHandler](../JComponent.html#getTransferHandler%28%29), [getUIClassID](../JComponent.html#getUIClassID%28%29), [getVerifyInputWhenFocusTarget](../JComponent.html#getVerifyInputWhenFocusTarget%28%29), [getVetoableChangeListeners](../JComponent.html#getVetoableChangeListeners%28%29), [getVisibleRect](../JComponent.html#getVisibleRect%28%29), [getWidth](../JComponent.html#getWidth%28%29), [getX](../JComponent.html#getX%28%29), [getY](../JComponent.html#getY%28%29), [grabFocus](../JComponent.html#grabFocus%28%29), [hide](../JComponent.html#hide%28%29), [isDoubleBuffered](../JComponent.html#isDoubleBuffered%28%29), [isLightweightComponent](../JComponent.html#isLightweightComponent%28java.awt.Component%29), [isManagingFocus](../JComponent.html#isManagingFocus%28%29), [isOpaque](../JComponent.html#isOpaque%28%29), [isOptimizedDrawingEnabled](../JComponent.html#isOptimizedDrawingEnabled%28%29), [isPaintingForPrint](../JComponent.html#isPaintingForPrint%28%29), [isPaintingOrigin](../JComponent.html#isPaintingOrigin%28%29), [isPaintingTile](../JComponent.html#isPaintingTile%28%29), [isRequestFocusEnabled](../JComponent.html#isRequestFocusEnabled%28%29), [isValidateRoot](../JComponent.html#isValidateRoot%28%29), [paint](../JComponent.html#paint%28java.awt.Graphics%29), [paintBorder](../JComponent.html#paintBorder%28java.awt.Graphics%29), [paintChildren](../JComponent.html#paintChildren%28java.awt.Graphics%29), [paintComponent](../JComponent.html#paintComponent%28java.awt.Graphics%29), [paintImmediately](../JComponent.html#paintImmediately%28int,int,int,int%29), [paintImmediately](../JComponent.html#paintImmediately%28java.awt.Rectangle%29), [print](../JComponent.html#print%28java.awt.Graphics%29), [printAll](../JComponent.html#printAll%28java.awt.Graphics%29), [printBorder](../JComponent.html#printBorder%28java.awt.Graphics%29), [printChildren](../JComponent.html#printChildren%28java.awt.Graphics%29), [printComponent](../JComponent.html#printComponent%28java.awt.Graphics%29), [processComponentKeyEvent](../JComponent.html#processComponentKeyEvent%28java.awt.event.KeyEvent%29), [processKeyBinding](../JComponent.html#processKeyBinding%28javax.swing.KeyStroke,java.awt.event.KeyEvent,int,boolean%29), [processKeyEvent](../JComponent.html#processKeyEvent%28java.awt.event.KeyEvent%29), [processMouseEvent](../JComponent.html#processMouseEvent%28java.awt.event.MouseEvent%29), [processMouseMotionEvent](../JComponent.html#processMouseMotionEvent%28java.awt.event.MouseEvent%29), [putClientProperty](../JComponent.html#putClientProperty%28java.lang.Object,java.lang.Object%29), [registerKeyboardAction](../JComponent.html#registerKeyboardAction%28java.awt.event.ActionListener,java.lang.String,javax.swing.KeyStroke,int%29), [registerKeyboardAction](../JComponent.html#registerKeyboardAction%28java.awt.event.ActionListener,javax.swing.KeyStroke,int%29), [removeAncestorListener](../JComponent.html#removeAncestorListener%28javax.swing.event.AncestorListener%29), [removeNotify](../JComponent.html#removeNotify%28%29), [removeVetoableChangeListener](../JComponent.html#removeVetoableChangeListener%28java.beans.VetoableChangeListener%29), [repaint](../JComponent.html#repaint%28long,int,int,int,int%29), [repaint](../JComponent.html#repaint%28java.awt.Rectangle%29), [requestDefaultFocus](../JComponent.html#requestDefaultFocus%28%29), [requestFocus](../JComponent.html#requestFocus%28%29), [requestFocus](../JComponent.html#requestFocus%28boolean%29), [requestFocusInWindow](../JComponent.html#requestFocusInWindow%28%29), [requestFocusInWindow](../JComponent.html#requestFocusInWindow%28boolean%29), [resetKeyboardActions](../JComponent.html#resetKeyboardActions%28%29), [reshape](../JComponent.html#reshape%28int,int,int,int%29), [revalidate](../JComponent.html#revalidate%28%29), [scrollRectToVisible](../JComponent.html#scrollRectToVisible%28java.awt.Rectangle%29), [setActionMap](../JComponent.html#setActionMap%28javax.swing.ActionMap%29), [setAlignmentX](../JComponent.html#setAlignmentX%28float%29), [setAlignmentY](../JComponent.html#setAlignmentY%28float%29), [setAutoscrolls](../JComponent.html#setAutoscrolls%28boolean%29), [setBackground](../JComponent.html#setBackground%28java.awt.Color%29), [setBorder](../JComponent.html#setBorder%28javax.swing.border.Border%29), [setComponentPopupMenu](../JComponent.html#setComponentPopupMenu%28javax.swing.JPopupMenu%29), [setDebugGraphicsOptions](../JComponent.html#setDebugGraphicsOptions%28int%29), [setDefaultLocale](../JComponent.html#setDefaultLocale%28java.util.Locale%29), [setDoubleBuffered](../JComponent.html#setDoubleBuffered%28boolean%29), [setEnabled](../JComponent.html#setEnabled%28boolean%29), [setFocusTraversalKeys](../JComponent.html#setFocusTraversalKeys%28int,java.util.Set%29), [setFont](../JComponent.html#setFont%28java.awt.Font%29), [setForeground](../JComponent.html#setForeground%28java.awt.Color%29), [setInheritsPopupMenu](../JComponent.html#setInheritsPopupMenu%28boolean%29), [setInputMap](../JComponent.html#setInputMap%28int,javax.swing.InputMap%29), [setInputVerifier](../JComponent.html#setInputVerifier%28javax.swing.InputVerifier%29), [setMaximumSize](../JComponent.html#setMaximumSize%28java.awt.Dimension%29), [setMinimumSize](../JComponent.html#setMinimumSize%28java.awt.Dimension%29), [setNextFocusableComponent](../JComponent.html#setNextFocusableComponent%28java.awt.Component%29), [setOpaque](../JComponent.html#setOpaque%28boolean%29), [setPreferredSize](../JComponent.html#setPreferredSize%28java.awt.Dimension%29), [setRequestFocusEnabled](../JComponent.html#setRequestFocusEnabled%28boolean%29), [setToolTipText](../JComponent.html#setToolTipText%28java.lang.String%29), [setTransferHandler](../JComponent.html#setTransferHandler%28javax.swing.TransferHandler%29), [setUI](../JComponent.html#setUI%28javax.swing.plaf.ComponentUI%29), [setVerifyInputWhenFocusTarget](../JComponent.html#setVerifyInputWhenFocusTarget%28boolean%29), [setVisible](../JComponent.html#setVisible%28boolean%29), [unregisterKeyboardAction](../JComponent.html#unregisterKeyboardAction%28javax.swing.KeyStroke%29), [update](../JComponent.html#update%28java.awt.Graphics%29)
Methods declared in class java.awt.Container
[add](../../../java/awt/Container.html#add%28java.awt.Component%29), [add](../../../java/awt/Container.html#add%28java.awt.Component,int%29), [add](../../../java/awt/Container.html#add%28java.awt.Component,java.lang.Object%29), [add](../../../java/awt/Container.html#add%28java.awt.Component,java.lang.Object,int%29), [add](../../../java/awt/Container.html#add%28java.lang.String,java.awt.Component%29), [addContainerListener](../../../java/awt/Container.html#addContainerListener%28java.awt.event.ContainerListener%29), [addImpl](../../../java/awt/Container.html#addImpl%28java.awt.Component,java.lang.Object,int%29), [addPropertyChangeListener](../../../java/awt/Container.html#addPropertyChangeListener%28java.beans.PropertyChangeListener%29), [addPropertyChangeListener](../../../java/awt/Container.html#addPropertyChangeListener%28java.lang.String,java.beans.PropertyChangeListener%29), [applyComponentOrientation](../../../java/awt/Container.html#applyComponentOrientation%28java.awt.ComponentOrientation%29), [areFocusTraversalKeysSet](../../../java/awt/Container.html#areFocusTraversalKeysSet%28int%29), [countComponents](../../../java/awt/Container.html#countComponents%28%29), [deliverEvent](../../../java/awt/Container.html#deliverEvent%28java.awt.Event%29), [doLayout](../../../java/awt/Container.html#doLayout%28%29), [findComponentAt](../../../java/awt/Container.html#findComponentAt%28int,int%29), [findComponentAt](../../../java/awt/Container.html#findComponentAt%28java.awt.Point%29), [getComponent](../../../java/awt/Container.html#getComponent%28int%29), [getComponentAt](../../../java/awt/Container.html#getComponentAt%28int,int%29), [getComponentAt](../../../java/awt/Container.html#getComponentAt%28java.awt.Point%29), [getComponentCount](../../../java/awt/Container.html#getComponentCount%28%29), [getComponents](../../../java/awt/Container.html#getComponents%28%29), [getComponentZOrder](../../../java/awt/Container.html#getComponentZOrder%28java.awt.Component%29), [getContainerListeners](../../../java/awt/Container.html#getContainerListeners%28%29), [getFocusTraversalKeys](../../../java/awt/Container.html#getFocusTraversalKeys%28int%29), [getFocusTraversalPolicy](../../../java/awt/Container.html#getFocusTraversalPolicy%28%29), [getLayout](../../../java/awt/Container.html#getLayout%28%29), [getMousePosition](../../../java/awt/Container.html#getMousePosition%28boolean%29), [insets](../../../java/awt/Container.html#insets%28%29), [invalidate](../../../java/awt/Container.html#invalidate%28%29), [isAncestorOf](../../../java/awt/Container.html#isAncestorOf%28java.awt.Component%29), [isFocusCycleRoot](../../../java/awt/Container.html#isFocusCycleRoot%28%29), [isFocusCycleRoot](../../../java/awt/Container.html#isFocusCycleRoot%28java.awt.Container%29), [isFocusTraversalPolicyProvider](../../../java/awt/Container.html#isFocusTraversalPolicyProvider%28%29), [isFocusTraversalPolicySet](../../../java/awt/Container.html#isFocusTraversalPolicySet%28%29), [layout](../../../java/awt/Container.html#layout%28%29), [list](../../../java/awt/Container.html#list%28java.io.PrintStream,int%29), [list](../../../java/awt/Container.html#list%28java.io.PrintWriter,int%29), [locate](../../../java/awt/Container.html#locate%28int,int%29), [minimumSize](../../../java/awt/Container.html#minimumSize%28%29), [paintComponents](../../../java/awt/Container.html#paintComponents%28java.awt.Graphics%29), [preferredSize](../../../java/awt/Container.html#preferredSize%28%29), [printComponents](../../../java/awt/Container.html#printComponents%28java.awt.Graphics%29), [processContainerEvent](../../../java/awt/Container.html#processContainerEvent%28java.awt.event.ContainerEvent%29), [processEvent](../../../java/awt/Container.html#processEvent%28java.awt.AWTEvent%29), [remove](../../../java/awt/Container.html#remove%28int%29), [remove](../../../java/awt/Container.html#remove%28java.awt.Component%29), [removeAll](../../../java/awt/Container.html#removeAll%28%29), [removeContainerListener](../../../java/awt/Container.html#removeContainerListener%28java.awt.event.ContainerListener%29), [setComponentZOrder](../../../java/awt/Container.html#setComponentZOrder%28java.awt.Component,int%29), [setFocusCycleRoot](../../../java/awt/Container.html#setFocusCycleRoot%28boolean%29), [setFocusTraversalPolicy](../../../java/awt/Container.html#setFocusTraversalPolicy%28java.awt.FocusTraversalPolicy%29), [setFocusTraversalPolicyProvider](../../../java/awt/Container.html#setFocusTraversalPolicyProvider%28boolean%29), [setLayout](../../../java/awt/Container.html#setLayout%28java.awt.LayoutManager%29), [transferFocusDownCycle](../../../java/awt/Container.html#transferFocusDownCycle%28%29), [validate](../../../java/awt/Container.html#validate%28%29), [validateTree](../../../java/awt/Container.html#validateTree%28%29)
Methods declared in class java.awt.Component
[action](../../../java/awt/Component.html#action%28java.awt.Event,java.lang.Object%29), [add](../../../java/awt/Component.html#add%28java.awt.PopupMenu%29), [addComponentListener](../../../java/awt/Component.html#addComponentListener%28java.awt.event.ComponentListener%29), [addFocusListener](../../../java/awt/Component.html#addFocusListener%28java.awt.event.FocusListener%29), [addHierarchyBoundsListener](../../../java/awt/Component.html#addHierarchyBoundsListener%28java.awt.event.HierarchyBoundsListener%29), [addHierarchyListener](../../../java/awt/Component.html#addHierarchyListener%28java.awt.event.HierarchyListener%29), [addInputMethodListener](../../../java/awt/Component.html#addInputMethodListener%28java.awt.event.InputMethodListener%29), [addKeyListener](../../../java/awt/Component.html#addKeyListener%28java.awt.event.KeyListener%29), [addMouseListener](../../../java/awt/Component.html#addMouseListener%28java.awt.event.MouseListener%29), [addMouseMotionListener](../../../java/awt/Component.html#addMouseMotionListener%28java.awt.event.MouseMotionListener%29), [addMouseWheelListener](../../../java/awt/Component.html#addMouseWheelListener%28java.awt.event.MouseWheelListener%29), [bounds](../../../java/awt/Component.html#bounds%28%29), [checkImage](../../../java/awt/Component.html#checkImage%28java.awt.Image,int,int,java.awt.image.ImageObserver%29), [checkImage](../../../java/awt/Component.html#checkImage%28java.awt.Image,java.awt.image.ImageObserver%29), [coalesceEvents](../../../java/awt/Component.html#coalesceEvents%28java.awt.AWTEvent,java.awt.AWTEvent%29), [contains](../../../java/awt/Component.html#contains%28java.awt.Point%29), [createImage](../../../java/awt/Component.html#createImage%28int,int%29), [createImage](../../../java/awt/Component.html#createImage%28java.awt.image.ImageProducer%29), [createVolatileImage](../../../java/awt/Component.html#createVolatileImage%28int,int%29), [createVolatileImage](../../../java/awt/Component.html#createVolatileImage%28int,int,java.awt.ImageCapabilities%29), [disableEvents](../../../java/awt/Component.html#disableEvents%28long%29), [dispatchEvent](../../../java/awt/Component.html#dispatchEvent%28java.awt.AWTEvent%29), [enable](../../../java/awt/Component.html#enable%28boolean%29), [enableEvents](../../../java/awt/Component.html#enableEvents%28long%29), [enableInputMethods](../../../java/awt/Component.html#enableInputMethods%28boolean%29), [firePropertyChange](../../../java/awt/Component.html#firePropertyChange%28java.lang.String,byte,byte%29), [firePropertyChange](../../../java/awt/Component.html#firePropertyChange%28java.lang.String,char,char%29), [firePropertyChange](../../../java/awt/Component.html#firePropertyChange%28java.lang.String,double,double%29), [firePropertyChange](../../../java/awt/Component.html#firePropertyChange%28java.lang.String,float,float%29), [firePropertyChange](../../../java/awt/Component.html#firePropertyChange%28java.lang.String,long,long%29), [firePropertyChange](../../../java/awt/Component.html#firePropertyChange%28java.lang.String,short,short%29), [firePropertyChange](../../../java/awt/Component.html#firePropertyChange%28java.lang.String,java.lang.Object,java.lang.Object%29), [getBackground](../../../java/awt/Component.html#getBackground%28%29), [getBounds](../../../java/awt/Component.html#getBounds%28%29), [getColorModel](../../../java/awt/Component.html#getColorModel%28%29), [getComponentListeners](../../../java/awt/Component.html#getComponentListeners%28%29), [getComponentOrientation](../../../java/awt/Component.html#getComponentOrientation%28%29), [getCursor](../../../java/awt/Component.html#getCursor%28%29), [getDropTarget](../../../java/awt/Component.html#getDropTarget%28%29), [getFocusCycleRootAncestor](../../../java/awt/Component.html#getFocusCycleRootAncestor%28%29), [getFocusListeners](../../../java/awt/Component.html#getFocusListeners%28%29), [getFocusTraversalKeysEnabled](../../../java/awt/Component.html#getFocusTraversalKeysEnabled%28%29), [getFont](../../../java/awt/Component.html#getFont%28%29), [getForeground](../../../java/awt/Component.html#getForeground%28%29), [getGraphicsConfiguration](../../../java/awt/Component.html#getGraphicsConfiguration%28%29), [getHierarchyBoundsListeners](../../../java/awt/Component.html#getHierarchyBoundsListeners%28%29), [getHierarchyListeners](../../../java/awt/Component.html#getHierarchyListeners%28%29), [getIgnoreRepaint](../../../java/awt/Component.html#getIgnoreRepaint%28%29), [getInputContext](../../../java/awt/Component.html#getInputContext%28%29), [getInputMethodListeners](../../../java/awt/Component.html#getInputMethodListeners%28%29), [getKeyListeners](../../../java/awt/Component.html#getKeyListeners%28%29), [getLocale](../../../java/awt/Component.html#getLocale%28%29), [getLocation](../../../java/awt/Component.html#getLocation%28%29), [getLocationOnScreen](../../../java/awt/Component.html#getLocationOnScreen%28%29), [getMouseListeners](../../../java/awt/Component.html#getMouseListeners%28%29), [getMouseMotionListeners](../../../java/awt/Component.html#getMouseMotionListeners%28%29), [getMousePosition](../../../java/awt/Component.html#getMousePosition%28%29), [getMouseWheelListeners](../../../java/awt/Component.html#getMouseWheelListeners%28%29), [getName](../../../java/awt/Component.html#getName%28%29), [getParent](../../../java/awt/Component.html#getParent%28%29), [getPropertyChangeListeners](../../../java/awt/Component.html#getPropertyChangeListeners%28%29), [getPropertyChangeListeners](../../../java/awt/Component.html#getPropertyChangeListeners%28java.lang.String%29), [getSize](../../../java/awt/Component.html#getSize%28%29), [getToolkit](../../../java/awt/Component.html#getToolkit%28%29), [getTreeLock](../../../java/awt/Component.html#getTreeLock%28%29), [gotFocus](../../../java/awt/Component.html#gotFocus%28java.awt.Event,java.lang.Object%29), [handleEvent](../../../java/awt/Component.html#handleEvent%28java.awt.Event%29), [hasFocus](../../../java/awt/Component.html#hasFocus%28%29), [imageUpdate](../../../java/awt/Component.html#imageUpdate%28java.awt.Image,int,int,int,int,int%29), [inside](../../../java/awt/Component.html#inside%28int,int%29), [isBackgroundSet](../../../java/awt/Component.html#isBackgroundSet%28%29), [isCursorSet](../../../java/awt/Component.html#isCursorSet%28%29), [isDisplayable](../../../java/awt/Component.html#isDisplayable%28%29), [isEnabled](../../../java/awt/Component.html#isEnabled%28%29), [isFocusable](../../../java/awt/Component.html#isFocusable%28%29), [isFocusOwner](../../../java/awt/Component.html#isFocusOwner%28%29), [isFocusTraversable](../../../java/awt/Component.html#isFocusTraversable%28%29), [isFontSet](../../../java/awt/Component.html#isFontSet%28%29), [isForegroundSet](../../../java/awt/Component.html#isForegroundSet%28%29), [isLightweight](../../../java/awt/Component.html#isLightweight%28%29), [isMaximumSizeSet](../../../java/awt/Component.html#isMaximumSizeSet%28%29), [isMinimumSizeSet](../../../java/awt/Component.html#isMinimumSizeSet%28%29), [isPreferredSizeSet](../../../java/awt/Component.html#isPreferredSizeSet%28%29), [isShowing](../../../java/awt/Component.html#isShowing%28%29), [isValid](../../../java/awt/Component.html#isValid%28%29), [isVisible](../../../java/awt/Component.html#isVisible%28%29), [keyDown](../../../java/awt/Component.html#keyDown%28java.awt.Event,int%29), [keyUp](../../../java/awt/Component.html#keyUp%28java.awt.Event,int%29), [list](../../../java/awt/Component.html#list%28%29), [list](../../../java/awt/Component.html#list%28java.io.PrintStream%29), [list](../../../java/awt/Component.html#list%28java.io.PrintWriter%29), [location](../../../java/awt/Component.html#location%28%29), [lostFocus](../../../java/awt/Component.html#lostFocus%28java.awt.Event,java.lang.Object%29), [mouseDown](../../../java/awt/Component.html#mouseDown%28java.awt.Event,int,int%29), [mouseDrag](../../../java/awt/Component.html#mouseDrag%28java.awt.Event,int,int%29), [mouseEnter](../../../java/awt/Component.html#mouseEnter%28java.awt.Event,int,int%29), [mouseExit](../../../java/awt/Component.html#mouseExit%28java.awt.Event,int,int%29), [mouseMove](../../../java/awt/Component.html#mouseMove%28java.awt.Event,int,int%29), [mouseUp](../../../java/awt/Component.html#mouseUp%28java.awt.Event,int,int%29), [move](../../../java/awt/Component.html#move%28int,int%29), [nextFocus](../../../java/awt/Component.html#nextFocus%28%29), [paintAll](../../../java/awt/Component.html#paintAll%28java.awt.Graphics%29), [postEvent](../../../java/awt/Component.html#postEvent%28java.awt.Event%29), [prepareImage](../../../java/awt/Component.html#prepareImage%28java.awt.Image,int,int,java.awt.image.ImageObserver%29), [prepareImage](../../../java/awt/Component.html#prepareImage%28java.awt.Image,java.awt.image.ImageObserver%29), [processComponentEvent](../../../java/awt/Component.html#processComponentEvent%28java.awt.event.ComponentEvent%29), [processFocusEvent](../../../java/awt/Component.html#processFocusEvent%28java.awt.event.FocusEvent%29), [processHierarchyBoundsEvent](../../../java/awt/Component.html#processHierarchyBoundsEvent%28java.awt.event.HierarchyEvent%29), [processHierarchyEvent](../../../java/awt/Component.html#processHierarchyEvent%28java.awt.event.HierarchyEvent%29), [processInputMethodEvent](../../../java/awt/Component.html#processInputMethodEvent%28java.awt.event.InputMethodEvent%29), [processMouseWheelEvent](../../../java/awt/Component.html#processMouseWheelEvent%28java.awt.event.MouseWheelEvent%29), [remove](../../../java/awt/Component.html#remove%28java.awt.MenuComponent%29), [removeComponentListener](../../../java/awt/Component.html#removeComponentListener%28java.awt.event.ComponentListener%29), [removeFocusListener](../../../java/awt/Component.html#removeFocusListener%28java.awt.event.FocusListener%29), [removeHierarchyBoundsListener](../../../java/awt/Component.html#removeHierarchyBoundsListener%28java.awt.event.HierarchyBoundsListener%29), [removeHierarchyListener](../../../java/awt/Component.html#removeHierarchyListener%28java.awt.event.HierarchyListener%29), [removeInputMethodListener](../../../java/awt/Component.html#removeInputMethodListener%28java.awt.event.InputMethodListener%29), [removeKeyListener](../../../java/awt/Component.html#removeKeyListener%28java.awt.event.KeyListener%29), [removeMouseListener](../../../java/awt/Component.html#removeMouseListener%28java.awt.event.MouseListener%29), [removeMouseMotionListener](../../../java/awt/Component.html#removeMouseMotionListener%28java.awt.event.MouseMotionListener%29), [removeMouseWheelListener](../../../java/awt/Component.html#removeMouseWheelListener%28java.awt.event.MouseWheelListener%29), [removePropertyChangeListener](../../../java/awt/Component.html#removePropertyChangeListener%28java.beans.PropertyChangeListener%29), [removePropertyChangeListener](../../../java/awt/Component.html#removePropertyChangeListener%28java.lang.String,java.beans.PropertyChangeListener%29), [repaint](../../../java/awt/Component.html#repaint%28%29), [repaint](../../../java/awt/Component.html#repaint%28int,int,int,int%29), [repaint](../../../java/awt/Component.html#repaint%28long%29), [requestFocus](../../../java/awt/Component.html#requestFocus%28boolean,java.awt.event.FocusEvent.Cause%29), [requestFocus](../../../java/awt/Component.html#requestFocus%28java.awt.event.FocusEvent.Cause%29), [requestFocusInWindow](../../../java/awt/Component.html#requestFocusInWindow%28java.awt.event.FocusEvent.Cause%29), [resize](../../../java/awt/Component.html#resize%28int,int%29), [resize](../../../java/awt/Component.html#resize%28java.awt.Dimension%29), [setBounds](../../../java/awt/Component.html#setBounds%28int,int,int,int%29), [setBounds](../../../java/awt/Component.html#setBounds%28java.awt.Rectangle%29), [setComponentOrientation](../../../java/awt/Component.html#setComponentOrientation%28java.awt.ComponentOrientation%29), [setCursor](../../../java/awt/Component.html#setCursor%28java.awt.Cursor%29), [setDropTarget](../../../java/awt/Component.html#setDropTarget%28java.awt.dnd.DropTarget%29), [setFocusable](../../../java/awt/Component.html#setFocusable%28boolean%29), [setFocusTraversalKeysEnabled](../../../java/awt/Component.html#setFocusTraversalKeysEnabled%28boolean%29), [setIgnoreRepaint](../../../java/awt/Component.html#setIgnoreRepaint%28boolean%29), [setLocale](../../../java/awt/Component.html#setLocale%28java.util.Locale%29), [setLocation](../../../java/awt/Component.html#setLocation%28int,int%29), [setLocation](../../../java/awt/Component.html#setLocation%28java.awt.Point%29), [setMixingCutoutShape](../../../java/awt/Component.html#setMixingCutoutShape%28java.awt.Shape%29), [setName](../../../java/awt/Component.html#setName%28java.lang.String%29), [setSize](../../../java/awt/Component.html#setSize%28int,int%29), [setSize](../../../java/awt/Component.html#setSize%28java.awt.Dimension%29), [show](../../../java/awt/Component.html#show%28%29), [show](../../../java/awt/Component.html#show%28boolean%29), [size](../../../java/awt/Component.html#size%28%29), [toString](../../../java/awt/Component.html#toString%28%29), [transferFocus](../../../java/awt/Component.html#transferFocus%28%29), [transferFocusBackward](../../../java/awt/Component.html#transferFocusBackward%28%29), [transferFocusUpCycle](../../../java/awt/Component.html#transferFocusUpCycle%28%29)
Field Details
FOCUS_ACCELERATOR_KEY
public static final String FOCUS_ACCELERATOR_KEY
The bound property name for the focus accelerator.
See Also:
* Constant Field ValuesDEFAULT_KEYMAP
public static final String DEFAULT_KEYMAP
The default keymap that will be shared by allJTextComponent
instances unless they have had a different keymap set.
See Also:
* Constant Field ValuesConstructor Details
JTextComponent
public JTextComponent()
Creates a newJTextComponent
. Listeners for caret events are established, and the pluggable UI installed. The component is marked as editable. No layout manager is used, because layout is managed by the view subsystem of text. The document model is set tonull
.Method Details
getUI
Fetches the user-interface factory for this text-oriented editor.
Overrides:
[getUI](../JComponent.html#getUI%28%29)
in class[JComponent](../JComponent.html "class in javax.swing")
Returns:
the factorysetUI
public void setUI(TextUI ui)
Sets the user-interface factory for this text-oriented editor.
Parameters:
ui
- the factoryupdateUI
public void updateUI()
Reloads the pluggable UI. The key used to fetch the new interface isgetUIClassID()
. The type of the UI isTextUI
.invalidate
is called after setting the UI.
Overrides:
[updateUI](../JComponent.html#updateUI%28%29)
in class[JComponent](../JComponent.html "class in javax.swing")
See Also:
* JComponent.setUI(javax.swing.plaf.ComponentUI)
* UIManager.getLookAndFeel()
* UIManager.getUI(javax.swing.JComponent)addCaretListener
Adds a caret listener for notification of any changes to the caret.
Parameters:
listener
- the listener to be added
See Also:
* CaretEventremoveCaretListener
public void removeCaretListener(CaretListener listener)
Removes a caret listener.
Parameters:
listener
- the listener to be removed
See Also:
* CaretEventgetCaretListeners
Returns an array of all the caret listeners registered on this text component.
Returns:
all of this component'sCaretListener
s or an empty array if no caret listeners are currently registered
Since:
1.4
See Also:
* addCaretListener(javax.swing.event.CaretListener)
* removeCaretListener(javax.swing.event.CaretListener)fireCaretUpdate
protected void fireCaretUpdate(CaretEvent e)
Notifies all listeners that have registered interest for notification on this event type. The event instance is lazily created using the parameters passed into the fire method. The listener list is processed in a last-to-first manner.
Parameters:
e
- the event
See Also:
* EventListenerListsetDocument
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 after revalidation. A PropertyChange event ("document") is propagated to each listener.
Parameters:
doc
- the document to display/edit
See Also:
* getDocument()getDocument
Fetches the model associated with the editor. This is primarily for the UI to get at the minimal amount of state required to be a text editor. Subclasses will return the actual type of the model which will typically be something that extends Document.
Returns:
the modelgetActions
Fetches the command list for the editor. This is the list of commands supported by the plugged-in UI augmented by the collection of commands that the editor itself supports. These are useful for binding to events, such as in a keymap.
Returns:
the command listsetMargin
Sets margin space between the text component's border and its text. The text component's default
Border
object will use this value to create the proper margin. However, if a non-default border is set on the text component, it is thatBorder
object's responsibility to create the appropriate margin space (else this property will effectively be ignored). This causes a redraw of the component. A PropertyChange event ("margin") is sent to all listeners.
Parameters:
m
- the space between the border and the textgetMargin
public Insets getMargin()
Returns the margin between the text component's border and its text.
Returns:
the marginsetNavigationFilter
Sets the
NavigationFilter
.NavigationFilter
is used byDefaultCaret
and the default cursor movement actions as a way to restrict the cursor movement.
Parameters:
filter
- the filter
Since:
1.4getNavigationFilter
Returns the
NavigationFilter
.NavigationFilter
is used byDefaultCaret
and the default cursor movement actions as a way to restrict the cursor movement. A null return value implies the cursor movement and selection should not be restricted.
Returns:
the NavigationFilter
Since:
1.4getCaret
public Caret getCaret()
Fetches the caret that allows text-oriented navigation over the view.
Returns:
the caretsetCaret
Sets the caret to be used. By default this will be set by the UI that gets installed. This can be changed to a custom caret if desired. Setting the caret results in a PropertyChange event ("caret") being fired.
Parameters:
c
- the caret
See Also:
* getCaret()getHighlighter
Fetches the object responsible for making highlights.
Returns:
the highlightersetHighlighter
Sets the highlighter to be used. By default this will be set by the UI that gets installed. This can be changed to a custom highlighter if desired. The highlighter can be set to
null
to disable it. A PropertyChange event ("highlighter") is fired when a new highlighter is installed.
Parameters:
h
- the highlighter
See Also:
* getHighlighter()setKeymap
Sets the keymap to use for binding events to actions. Setting to
null
effectively disables keyboard input. A PropertyChange event ("keymap") is fired when a new keymap is installed.
Parameters:
map
- the keymap
See Also:
* getKeymap()setDragEnabled
@BeanProperty(bound=false,description="determines whether automatic drag handling is enabled")public void setDragEnabled(boolean b)
Turns on or off automatic drag handling. In order to enable automatic drag handling, this property should be set totrue
, and the component'sTransferHandler
needs to benon-null
. The default value of thedragEnabled
property isfalse
.
The job of honoring this property, and recognizing a user drag gesture, lies with the look and feel implementation, and in particular, the component'sTextUI
. When automatic drag handling is enabled, most look and feels (including those that subclassBasicLookAndFeel
) begin a drag and drop operation whenever the user presses the mouse button over a selection and then moves the mouse a few pixels. Setting this property totrue
can therefore have a subtle effect on how selections behave.
If a look and feel is used that ignores this property, you can still begin a drag and drop operation by callingexportAsDrag
on the component'sTransferHandler
.
Parameters:
b
- whether or not to enable automatic drag handling
Throws:
[HeadlessException](../../../java/awt/HeadlessException.html "class in java.awt")
- ifb
istrue
andGraphicsEnvironment.isHeadless()
returnstrue
Since:
1.4
See Also:
* GraphicsEnvironment.isHeadless()
* getDragEnabled()
* JComponent.setTransferHandler(javax.swing.TransferHandler)
* TransferHandlergetDragEnabled
public boolean getDragEnabled()
Returns whether or not automatic drag handling is enabled.
Returns:
the value of thedragEnabled
property
Since:
1.4
See Also:
* setDragEnabled(boolean)setDropMode
public final void setDropMode(DropMode dropMode)
Sets the drop mode for this component. For backward compatibility, the default for this property isDropMode.USE_SELECTION
. Usage ofDropMode.INSERT
is recommended, however, for an improved user experience. It offers similar behavior of dropping between text locations, but does so without affecting the actual text selection and caret location.
JTextComponents
support the following drop modes:
*DropMode.USE_SELECTION
*DropMode.INSERT
The drop mode is only meaningful if this component has aTransferHandler
that accepts drops.
Parameters:
dropMode
- the drop mode to use
Throws:
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- if the drop mode is unsupported ornull
Since:
1.6
See Also:
* getDropMode()
* getDropLocation()
* JComponent.setTransferHandler(javax.swing.TransferHandler)
* TransferHandlergetDropMode
public final DropMode getDropMode()
Returns the drop mode for this component.
Returns:
the drop mode for this component
Since:
1.6
See Also:
* setDropMode(javax.swing.DropMode)getDropLocation
Returns the location that this component should visually indicate as the drop location during a DnD operation over the component, or
null
if no location is to currently be shown.
This method is not meant for querying the drop location from aTransferHandler
, as the drop location is only set after theTransferHandler
'scanImport
has returned and has allowed for the location to be shown.
When this property changes, a property change event with name "dropLocation" is fired by the component.
Returns:
the drop location
Since:
1.6
See Also:
* setDropMode(javax.swing.DropMode)
* TransferHandler.canImport(TransferHandler.TransferSupport)getKeymap
public Keymap getKeymap()
Fetches the keymap currently active in this text component.
Returns:
the keymapaddKeymap
Adds a new keymap into the keymap hierarchy. Keymap bindings 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 keymap (must be unique within the collection of named keymaps in the document); the name may benull
if the keymap is unnamed, but the caller is responsible for managing the reference returned as an unnamed keymap can't be fetched by name
parent
- the parent keymap; this may benull
if unspecified bindings need not be resolved in some other keymap
Returns:
the keymapremoveKeymap
Removes a named keymap previously added to the document. Keymaps with
null
names may not be removed in this way.
Parameters:
nm
- the name of the keymap to remove
Returns:
the keymap that was removedgetKeymap
Fetches a named keymap previously added to the document. This does not work with
null
-named keymaps.
Parameters:
nm
- the name of the keymap
Returns:
the keymaploadKeymap
Loads a keymap with a bunch of bindings. This can be used to take a static table of definitions and load them into some keymap. The following example illustrates an example of binding some keys to the cut, copy, and paste actions associated with a JTextComponent. A code fragment to accomplish this might look as follows:
static final JTextComponent.KeyBinding[] defaultBindings = { new JTextComponent.KeyBinding( KeyStroke.getKeyStroke(KeyEvent.VK_C, InputEvent.CTRL_MASK), DefaultEditorKit.copyAction), new JTextComponent.KeyBinding( KeyStroke.getKeyStroke(KeyEvent.VK_V, InputEvent.CTRL_MASK), DefaultEditorKit.pasteAction), new JTextComponent.KeyBinding( KeyStroke.getKeyStroke(KeyEvent.VK_X, InputEvent.CTRL_MASK), DefaultEditorKit.cutAction), }; JTextComponent c = new JTextPane(); Keymap k = c.getKeymap(); JTextComponent.loadKeymap(k, defaultBindings, c.getActions());
The sets of bindings and actions may be empty but must be non-
null
.
Parameters:
map
- the keymap
bindings
- the bindings
actions
- the set of actionsgetCaretColor
public Color getCaretColor()
Fetches the current color used to render the caret.
Returns:
the colorsetCaretColor
Sets the current color used to render the caret. Setting to
null
effectively restores the default color. Setting the color results in a PropertyChange event ("caretColor") being fired.
Parameters:
c
- the color
See Also:
* getCaretColor()getSelectionColor
public Color getSelectionColor()
Fetches the current color used to render the selection.
Returns:
the colorsetSelectionColor
Sets the current color used to render the selection. Setting the color to
null
is the same as settingColor.white
. Setting the color results in a PropertyChange event ("selectionColor").
Parameters:
c
- the color
See Also:
* getSelectionColor()getSelectedTextColor
public Color getSelectedTextColor()
Fetches the current color used to render the selected text.
Returns:
the colorsetSelectedTextColor
Sets the current color used to render the selected text. Setting the color to
null
is the same asColor.black
. Setting the color results in a PropertyChange event ("selectedTextColor") being fired.
Parameters:
c
- the color
See Also:
* getSelectedTextColor()getDisabledTextColor
public Color getDisabledTextColor()
Fetches the current color used to render the disabled text.
Returns:
the colorsetDisabledTextColor
Sets the current color used to render the disabled text. Setting the color fires off a PropertyChange event ("disabledTextColor").
Parameters:
c
- the color
See Also:
* getDisabledTextColor()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.
This is the method that is used by the default implementation of the action for inserting content that gets bound to the keymap actions.
Parameters:
content
- the content to replace the selection withgetText
Fetches a portion of the text represented by the component. Returns an empty string if length is 0.
Parameters:
offs
- the offset ≥ 0
len
- the length ≥ 0
Returns:
the text
Throws:
[BadLocationException](BadLocationException.html "class in javax.swing.text")
- if the offset or length are invalidmodelToView
Converts the given location in the model to a place in the view coordinate system. The component must have a positive size for this translation to be computed (i.e. layout cannot be computed until the component has been sized). The component does not have to be visible or painted.
Parameters:
pos
- the position ≥ 0
Returns:
the coordinates as a rectangle, with (r.x, r.y) as the location in the coordinate system, or null if the component does not yet have a positive size.
Throws:
[BadLocationException](BadLocationException.html "class in javax.swing.text")
- if the given position does not represent a valid location in the associated document
See Also:
* TextUI.modelToView(javax.swing.text.JTextComponent, int)modelToView2D
Converts the given location in the model to a place in the view coordinate system. The component must have a positive size for this translation to be computed (i.e. layout cannot be computed until the component has been sized). The component does not have to be visible or painted.
Parameters:
pos
- the position>= 0
Returns:
the coordinates as a rectangle, with (r.x, r.y) as the location in the coordinate system, or null if the component does not yet have a positive size.
Throws:
[BadLocationException](BadLocationException.html "class in javax.swing.text")
- if the given position does not represent a valid location in the associated document
Since:
9
See Also:
* TextUI.modelToView2D(javax.swing.text.JTextComponent, int, javax.swing.text.Position.Bias)viewToModel
Converts the given place in the view coordinate system to the nearest representative location in the model. The component must have a positive size for this translation to be computed (i.e. layout cannot be computed until the component has been sized). The component does not have to be visible or painted.
Parameters:
pt
- the location in the view to translate
Returns:
the offset ≥ 0 from the start of the document, or -1 if the component does not yet have a positive size.
See Also:
* TextUI.viewToModel(javax.swing.text.JTextComponent, java.awt.Point)viewToModel2D
public int viewToModel2D(Point2D pt)
Converts the given place in the view coordinate system to the nearest representative location in the model. The component must have a positive size for this translation to be computed (i.e. layout cannot be computed until the component has been sized). The component does not have to be visible or painted.
Parameters:
pt
- the location in the view to translate
Returns:
the offset>= 0
from the start of the document, or-1
if the component does not yet have a positive size.
Since:
9
See Also:
* TextUI.viewToModel2D(javax.swing.text.JTextComponent, java.awt.geom.Point2D, javax.swing.text.Position.Bias[])cut
public void cut()
Transfers the currently selected range in the associated text model to the system clipboard, removing the contents from the model. The current selection is reset. Does nothing fornull
selections.
See Also:
* Toolkit.getSystemClipboard()
* Clipboardcopy
public void copy()
Transfers the currently selected range in the associated text model to the system clipboard, leaving the contents in the text model. The current selection remains intact. Does nothing fornull
selections.
See Also:
* Toolkit.getSystemClipboard()
* Clipboardpaste
public void paste()
Transfers the contents of the system clipboard into the associated text model. If there is a selection in the associated view, it is replaced with the contents of the clipboard. If there is no selection, the clipboard contents are inserted in front of the current insert position in the associated view. If the clipboard is empty, does nothing.
See Also:
* replaceSelection(java.lang.String)
* Toolkit.getSystemClipboard()
* ClipboardmoveCaretPosition
public void moveCaretPosition(int pos)
Moves the caret to a new position, leaving behind a mark defined by the last timesetCaretPosition
was called. This forms a selection. If the document isnull
, does nothing. The position must be between 0 and the length of the component's text or else an exception is thrown.
Parameters:
pos
- the position
Throws:
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- if the value supplied forposition
is less than zero or greater than the component's text length
See Also:
* setCaretPosition(int)setFocusAccelerator
@BeanProperty(description="accelerator character used to grab focus")public void setFocusAccelerator(char aKey)
Sets the key accelerator that will cause the receiving text component to get the focus. The accelerator will be the key combination of the platform-specific modifier key and the character given (converted to upper case). For example, the ALT key is used as a modifier on Windows and the CTRL+ALT combination is used on Mac. By default, there is no focus accelerator key. Any previous key accelerator setting will be superseded. A '\0' key setting will be registered, and has the effect of turning off the focus accelerator. When the new key is set, a PropertyChange event (FOCUS_ACCELERATOR_KEY) will be fired.
Parameters:
aKey
- the key
See Also:
* getFocusAccelerator()getFocusAccelerator
public char getFocusAccelerator()
Returns the key accelerator that will cause the receiving text component to get the focus. Return '\0' if no focus accelerator has been set.
Returns:
the keyread
Initializes from a stream. This creates a model of the type appropriate for the component and initializes the model from the stream. By default this will load the model as plain text. Previous contents of the model are discarded.
Parameters:
in
- the stream to read from
desc
- an object describing the stream; this might be a string, a File, a URL, etc. Some kinds of documents (such as html for example) might be able to make use of this information; if non-null
, it is added as a property of the document
Throws:
[IOException](../../../../java.base/java/io/IOException.html "class in java.io")
- as thrown by the stream being used to initialize
See Also:
* EditorKit.createDefaultDocument()
* setDocument(javax.swing.text.Document)
* PlainDocumentwrite
Stores the contents of the model into the given stream. By default this will store the model as plain text.
Parameters:
out
- the output stream
Throws:
[IOException](../../../../java.base/java/io/IOException.html "class in java.io")
- on any I/O errorsetCaretPosition
Sets the position of the text insertion caret for the
TextComponent
. Note that the caret tracks change, so this may move if the underlying text of the component is changed. If the document isnull
, does nothing. The position must be between 0 and the length of the component's text or else an exception is thrown.
Parameters:
position
- the position
Throws:
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- if the value supplied forposition
is less than zero or greater than the component's text lengthgetCaretPosition
public int getCaretPosition()
Returns the position of the text insertion caret for the text component.
Returns:
the position of the text insertion caret for the text component ≥ 0setText
Sets the text of this
TextComponent
to the specified text. If the text isnull
or empty, has the effect of simply deleting the old text. When text has been inserted, the resulting caret location is determined by the implementation of the caret class.
Note that text is not a bound property, so noPropertyChangeEvent
is fired when it changes. To listen for changes to the text, useDocumentListener
.
Parameters:
t
- the new text to be set
See Also:
* getText(int, int)
* DefaultCaretgetText
Returns the text contained in this
TextComponent
. If the underlying document isnull
, will give aNullPointerException
. Note that text is not a bound property, so noPropertyChangeEvent
is fired when it changes. To listen for changes to the text, useDocumentListener
.
Returns:
the text
Throws:
[NullPointerException](../../../../java.base/java/lang/NullPointerException.html "class in java.lang")
- if the document isnull
See Also:
* setText(java.lang.String)getSelectedText
Returns the selected text contained in this
TextComponent
. If the selection isnull
or the document empty, returnsnull
.
Returns:
the text
Throws:
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- if the selection doesn't have a valid mapping into the document for some reason
See Also:
* setText(java.lang.String)isEditable
public boolean isEditable()
Returns the boolean indicating whether thisTextComponent
is editable or not.
Returns:
the boolean value
See Also:
* setEditable(boolean)setEditable
@BeanProperty(description="specifies if the text can be edited")public void setEditable(boolean b)
Sets the specified boolean to indicate whether or not thisTextComponent
should be editable. A PropertyChange event ("editable") is fired when the state is changed.
Parameters:
b
- the boolean to be set
See Also:
* isEditable()getSelectionStart
public int getSelectionStart()
Returns the selected text's start position. Return 0 for an empty document, or the value of dot if no selection.
Returns:
the start position ≥ 0setSelectionStart
@BeanProperty(bound=false,description="starting location of the selection.")public void setSelectionStart(int selectionStart)
Sets the selection start to the specified position. The new starting point is constrained to be before or at the current selection end.
This is available for backward compatibility to code that called this method onjava.awt.TextComponent
. This is implemented to forward to theCaret
implementation which is where the actual selection is maintained.
Parameters:
selectionStart
- the start position of the text ≥ 0getSelectionEnd
public int getSelectionEnd()
Returns the selected text's end position. Return 0 if the document is empty, or the value of dot if there is no selection.
Returns:
the end position ≥ 0setSelectionEnd
@BeanProperty(bound=false,description="ending location of the selection.")public void setSelectionEnd(int selectionEnd)
Sets the selection end to the specified position. The new end point is constrained to be at or after the current selection start.
This is available for backward compatibility to code that called this method onjava.awt.TextComponent
. This is implemented to forward to theCaret
implementation which is where the actual selection is maintained.
Parameters:
selectionEnd
- the end position of the text ≥ 0select
public void select(int selectionStart, int selectionEnd)
Selects the text between the specified start and end positions.
This method sets the start and end positions of the selected text, enforcing the restriction that the start position must be greater than or equal to zero. The end position must be greater than or equal to the start position, and less than or equal to the length of the text component's text.
If the caller supplies values that are inconsistent or out of bounds, the method enforces these constraints silently, and without failure. Specifically, if the start position or end position is greater than the length of the text, it is reset to equal the text length. If the start position is less than zero, it is reset to zero, and if the end position is less than the start position, it is reset to the start position.
This call is provided for backward compatibility. It is routed to a call tosetCaretPosition
followed by a call tomoveCaretPosition
. The preferred way to manage selection is by calling those methods directly.
Parameters:
selectionStart
- the start position of the text
selectionEnd
- the end position of the text
See Also:
* setCaretPosition(int)
* moveCaretPosition(int)selectAll
public void selectAll()
Selects all the text in theTextComponent
. Does nothing on anull
or empty document.getToolTipText
Returns the string to be used as the tooltip for
event
. This will return one of:
1. IfsetToolTipText
has been invoked with a non-null
value, it will be returned, otherwise
2. The value from invokinggetToolTipText
on the UI will be returned.
By defaultJTextComponent
does not register itself with theToolTipManager
. This means that tooltips will NOT be shown from theTextUI
unlessregisterComponent
has been invoked on theToolTipManager
.
Overrides:
[getToolTipText](../JComponent.html#getToolTipText%28java.awt.event.MouseEvent%29)
in class[JComponent](../JComponent.html "class in javax.swing")
Parameters:
event
- the event in question
Returns:
the string to be used as the tooltip forevent
See Also:
* JComponent.setToolTipText(java.lang.String)
* TextUI.getToolTipText(javax.swing.text.JTextComponent, java.awt.Point)
* ToolTipManager.registerComponent(javax.swing.JComponent)getPreferredScrollableViewportSize
Returns the preferred size of the viewport for a view component. This is implemented to do the default behavior of returning the preferred size of the component.
Specified by:
[getPreferredScrollableViewportSize](../Scrollable.html#getPreferredScrollableViewportSize%28%29)
in interface[Scrollable](../Scrollable.html "interface in javax.swing")
Returns:
thepreferredSize
of aJViewport
whose view is thisScrollable
See Also:
* JComponent.getPreferredSize()getScrollableUnitIncrement
public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction)
Components that display logical rows or columns should compute the scroll increment that will completely expose one new row or column, depending on the value of orientation. Ideally, components should handle a partially exposed row or column by returning the distance required to completely expose the item.
The default implementation of this is to simply return 10% of the visible area. Subclasses are likely to be able to provide a much more reasonable value.
Specified by:
[getScrollableUnitIncrement](../Scrollable.html#getScrollableUnitIncrement%28java.awt.Rectangle,int,int%29)
in interface[Scrollable](../Scrollable.html "interface in javax.swing")
Parameters:
visibleRect
- the view area visible within the viewport
orientation
- eitherSwingConstants.VERTICAL
orSwingConstants.HORIZONTAL
direction
- less than zero to scroll up/left, greater than zero for down/right
Returns:
the "unit" increment for scrolling in the specified direction
Throws:
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- for an invalid orientation
See Also:
* JScrollBar.setUnitIncrement(int)getScrollableBlockIncrement
public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction)
Components that display logical rows or columns should compute the scroll increment that will completely expose one block of rows or columns, depending on the value of orientation.
The default implementation of this is to simply return the visible area. Subclasses will likely be able to provide a much more reasonable value.
Specified by:
[getScrollableBlockIncrement](../Scrollable.html#getScrollableBlockIncrement%28java.awt.Rectangle,int,int%29)
in interface[Scrollable](../Scrollable.html "interface in javax.swing")
Parameters:
visibleRect
- the view area visible within the viewport
orientation
- eitherSwingConstants.VERTICAL
orSwingConstants.HORIZONTAL
direction
- less than zero to scroll up/left, greater than zero for down/right
Returns:
the "block" increment for scrolling in the specified direction
Throws:
[IllegalArgumentException](../../../../java.base/java/lang/IllegalArgumentException.html "class in java.lang")
- for an invalid orientation
See Also:
* JScrollBar.setBlockIncrement(int)getScrollableTracksViewportWidth
@BeanProperty(bound=false)public boolean getScrollableTracksViewportWidth()
Returns true if a viewport should always force the width of thisScrollable
to match the width of the viewport. For example a normal text view that supported line wrapping would return true here, since it would be undesirable for wrapped lines to disappear beyond the right edge of the viewport. Note that returning true for aScrollable
whose ancestor is aJScrollPane
effectively disables horizontal scrolling.
Scrolling containers, likeJViewport
, will use this method each time they are validated.
Specified by:
[getScrollableTracksViewportWidth](../Scrollable.html#getScrollableTracksViewportWidth%28%29)
in interface[Scrollable](../Scrollable.html "interface in javax.swing")
Returns:
true if a viewport should force theScrollable
s width to match its owngetScrollableTracksViewportHeight
@BeanProperty(bound=false)public boolean getScrollableTracksViewportHeight()
Returns true if a viewport should always force the height of thisScrollable
to match the height of the viewport. For example a columnar text view that flowed text in left to right columns could effectively disable vertical scrolling by returning true here.
Scrolling containers, likeJViewport
, will use this method each time they are validated.
Specified by:
[getScrollableTracksViewportHeight](../Scrollable.html#getScrollableTracksViewportHeight%28%29)
in interface[Scrollable](../Scrollable.html "interface in javax.swing")
Returns:
true if a viewport should force the Scrollables height to match its ownprint
A convenience print method that displays a print dialog, and then prints this
JTextComponent
in interactive mode with no header or footer text. Note: this method blocks until printing is done.
Note: In headless mode, no dialogs will be shown.
This method calls the full featuredprint method to perform printing.
Returns:
true
, unless printing is canceled by the user
Throws:
[PrinterException](../../../java/awt/print/PrinterException.html "class in java.awt.print")
- if an error in the print system causes the job to be aborted
[SecurityException](../../../../java.base/java/lang/SecurityException.html "class in java.lang")
- if this thread is not allowed to initiate a print job request
Since:
1.6
See Also:
* print(MessageFormat, MessageFormat, boolean, PrintService, PrintRequestAttributeSet, boolean)print
A convenience print method that displays a print dialog, and then prints this
JTextComponent
in interactive mode with the specified header and footer text. Note: this method blocks until printing is done.
Note: In headless mode, no dialogs will be shown.
This method calls the full featuredprint method to perform printing.
Parameters:
headerFormat
- the text, inMessageFormat
, to be used as the header, ornull
for no header
footerFormat
- the text, inMessageFormat
, to be used as the footer, ornull
for no footer
Returns:
true
, unless printing is canceled by the user
Throws:
[PrinterException](../../../java/awt/print/PrinterException.html "class in java.awt.print")
- if an error in the print system causes the job to be aborted
[SecurityException](../../../../java.base/java/lang/SecurityException.html "class in java.lang")
- if this thread is not allowed to initiate a print job request
Since:
1.6
See Also:
* print(MessageFormat, MessageFormat, boolean, PrintService, PrintRequestAttributeSet, boolean)
* MessageFormatprint
Prints the content of this
JTextComponent
. Note: this method blocks until printing is done.
Page header and footer text can be added to the output by providingMessageFormat
arguments. The printing code requestsStrings
from the formats, providing a single item which may be included in the formatted string: anInteger
representing the current page number.
showPrintDialog boolean
parameter allows you to specify whether a print dialog is displayed to the user. When it is, the user may use the dialog to change printing attributes or even cancel the print.
service
allows you to provide the initialPrintService
for the print dialog, or to specifyPrintService
to print to when the dialog is not shown.
attributes
can be used to provide the initial values for the print dialog, or to supply any needed attributes when the dialog is not shown.attributes
can be used to control how the job will print, for example_duplex_ or single-sided.
interactive boolean
parameter allows you to specify whether to perform printing in interactive mode. Iftrue
, a progress dialog, with an abort option, is displayed for the duration of printing. This dialog is_modal_ whenprint
is invoked on the Event Dispatch Thread and non-modal otherwise. Warning: calling this method on the Event Dispatch Thread withinteractive false
blocks all events, including repaints, from being processed until printing is complete. It is only recommended when printing from an application with no visible GUI.
Note: In headless mode,showPrintDialog
andinteractive
parameters are ignored and no dialogs are shown.
This method ensures thedocument
is not mutated during printing. To indicate it visually,setEnabled(false)
is set for the duration of printing.
This method uses getPrintable(java.text.MessageFormat, java.text.MessageFormat) to render document content.
This method is thread-safe, although most Swing methods are not. Please see Concurrency in Swing for more information.
Sample Usage. This code snippet shows a cross-platform print dialog and then prints theJTextComponent
in interactive mode unless the user cancels the dialog:
textComponent.print(new MessageFormat("My text component header"),
new MessageFormat("Footer. Page - {0}"), true, null, null, true);Executing this code off the Event Dispatch Thread performs printing on the background. The following pattern might be used for background printing:
FutureTask future =
new FutureTask(
new Callable() {
public Boolean call() {
return textComponent.print(.....);
}
});
executor.execute(future);Parameters:
headerFormat
- the text, inMessageFormat
, to be used as the header, ornull
for no header
footerFormat
- the text, inMessageFormat
, to be used as the footer, ornull
for no footer
showPrintDialog
-true
to display a print dialog,false
otherwise
service
- initialPrintService
, ornull
for the default
attributes
- the job attributes to be applied to the print job, ornull
for none
interactive
- whether to print in an interactive mode
Returns:
true
, unless printing is canceled by the user
Throws:
[PrinterException](../../../java/awt/print/PrinterException.html "class in java.awt.print")
- if an error in the print system causes the job to be aborted
[SecurityException](../../../../java.base/java/lang/SecurityException.html "class in java.lang")
- if this thread is not allowed to initiate a print job request
Since:
1.6
See Also:
* getPrintable(java.text.MessageFormat, java.text.MessageFormat)
* MessageFormat
* GraphicsEnvironment.isHeadless()
* FutureTaskgetPrintable
Returns a
Printable
to use for printing the content of thisJTextComponent
. The returnedPrintable
prints the document as it looks on the screen except being reformatted to fit the paper. The returnedPrintable
can be wrapped inside anotherPrintable
in order to create complex reports and documents.
The returnedPrintable
shares thedocument
with thisJTextComponent
. It is the responsibility of the developer to ensure that thedocument
is not mutated while thisPrintable
is used. Printing behavior is undefined when thedocument
is mutated during printing.
Page header and footer text can be added to the output by providingMessageFormat
arguments. The printing code requestsStrings
from the formats, providing a single item which may be included in the formatted string: anInteger
representing the current page number.
The returnedPrintable
when printed, formats the document content appropriately for the page size. For correct line wrapping theimageable width
of all pages must be the same. See PageFormat.getImageableWidth().
This method is thread-safe, although most Swing methods are not. Please see Concurrency in Swing for more information.
The returnedPrintable
can be printed on any thread.
This implementation returnedPrintable
performs all painting on the Event Dispatch Thread, regardless of what thread it is used on.
Parameters:
headerFormat
- the text, inMessageFormat
, to be used as the header, ornull
for no header
footerFormat
- the text, inMessageFormat
, to be used as the footer, ornull
for no footer
Returns:
aPrintable
for use in printing content of thisJTextComponent
Since:
1.6
See Also:
* Printable
* PageFormat
* Document.render(java.lang.Runnable)getAccessibleContext
Gets the
AccessibleContext
associated with thisJTextComponent
. For text components, theAccessibleContext
takes the form of anAccessibleJTextComponent
. A newAccessibleJTextComponent
instance is created if necessary.
Specified by:
[getAccessibleContext](../../accessibility/Accessible.html#getAccessibleContext%28%29)
in interface[Accessible](../../accessibility/Accessible.html "interface in javax.accessibility")
Overrides:
[getAccessibleContext](../../../java/awt/Component.html#getAccessibleContext%28%29)
in class[Component](../../../java/awt/Component.html "class in java.awt")
Returns:
anAccessibleJTextComponent
that serves as theAccessibleContext
of thisJTextComponent
paramString
protected String paramString()
Returns a string representation of thisJTextComponent
. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not benull
.
OverridingparamString
to provide information about the specific new aspects of the JFC components.
Overrides:
[paramString](../JComponent.html#paramString%28%29)
in class[JComponent](../JComponent.html "class in javax.swing")
Returns:
a string representation of thisJTextComponent
getInputMethodRequests
Description copied from class:
[Component](../../../java/awt/Component.html#getInputMethodRequests%28%29)
Gets the input method request handler which supports requests from input methods for this component. A component that supports on-the-spot text input must override this method to return anInputMethodRequests
instance. At the same time, it also has to handle input method events.
Overrides:
[getInputMethodRequests](../../../java/awt/Component.html#getInputMethodRequests%28%29)
in class[Component](../../../java/awt/Component.html "class in java.awt")
Returns:
the input method request handler for this component,null
by default
See Also:
* Component.addInputMethodListener(java.awt.event.InputMethodListener)saveComposedText
protected boolean saveComposedText(int pos)
Saves composed text around the specified position. The composed text (if any) around the specified position is saved in a backing store and removed from the document.
Parameters:
pos
- document position to identify the composed text location
Returns:
true
if the composed text exists and is saved,false
otherwise
Since:
1.7
See Also:
* restoreComposedText()restoreComposedText
protected void restoreComposedText()
Restores composed text previously saved bysaveComposedText
. The saved composed text is inserted back into the document. This method should be invoked only ifsaveComposedText
returnstrue
.
Since:
1.7
See Also:
* saveComposedText(int)