Uses of Class
javax.swing.text.JTextComponent
Package
Description
Provides a set of "lightweight" (all-Java language) components
that, to the maximum degree possible, work the same on all platforms.
Provides one interface and many abstract classes that Swing uses to provide
its pluggable look-and-feel capabilities.
Provides user interface objects built according to the Basic look and feel.
Provides user interface objects that combine two or more look and feels.
Provides classes and interfaces that deal with editable and noneditable text
components.
Provides classes and interfaces for dealing with
javax.swing.JTree
.-
Uses of JTextComponent in javax.swing
Modifier and TypeClassDescriptionclass
A text component to edit various kinds of content.class
JFormattedTextField
extendsJTextField
adding support for formatting arbitrary values, as well as retrieving a particular object once the user has edited the text.class
JPasswordField
is a lightweight component that allows the editing of a single line of text where the view indicates something was typed, but does not show the original characters.class
AJTextArea
is a multi-line area that displays plain text.class
JTextField
is a lightweight component that allows the editing of a single line of text.class
A text component that can be marked up with attributes that are represented graphically. -
Uses of JTextComponent in javax.swing.plaf
Modifier and TypeMethodDescriptionabstract void
TextUI.damageRange
(JTextComponent t, int p0, int p1) Causes the portion of the view responsible for the given part of the model to be repainted.abstract void
TextUI.damageRange
(JTextComponent t, int p0, int p1, Position.Bias firstBias, Position.Bias secondBias) Causes the portion of the view responsible for the given part of the model to be repainted.abstract EditorKit
TextUI.getEditorKit
(JTextComponent t) Fetches the binding of services that set a policy for the type of document being edited.abstract int
TextUI.getNextVisualPositionFrom
(JTextComponent t, int pos, Position.Bias b, int direction, Position.Bias[] biasRet) Provides a way to determine the next visually represented model location that one might place a caret.abstract View
TextUI.getRootView
(JTextComponent t) Fetches a View with the allocation of the associated text component (i.e. the root of the hierarchy) that can be traversed to determine how the model is being represented spatially.TextUI.getToolTipText
(JTextComponent t, Point pt) Deprecated.TextUI.getToolTipText2D
(JTextComponent t, Point2D pt) Returns the string to be used as the tooltip at the passed in location.abstract Rectangle
TextUI.modelToView
(JTextComponent t, int pos) Deprecated.abstract Rectangle
TextUI.modelToView
(JTextComponent t, int pos, Position.Bias bias) Deprecated.TextUI.modelToView2D
(JTextComponent t, int pos, Position.Bias bias) Converts the given location in the model to a place in the view coordinate system.abstract int
TextUI.viewToModel
(JTextComponent t, Point pt) Deprecated.abstract int
TextUI.viewToModel
(JTextComponent t, Point pt, Position.Bias[] biasReturn) Deprecated.int
TextUI.viewToModel2D
(JTextComponent t, Point2D pt, Position.Bias[] biasReturn) Provides a mapping from the view coordinate space to the logical coordinate space of the model. -
Uses of JTextComponent in javax.swing.plaf.basic
Modifier and TypeMethodDescriptionprotected final JTextComponent
BasicTextUI.getComponent()
Fetches the text component associated with this UI implementation.Modifier and TypeMethodDescriptionvoid
BasicTextUI.damageRange
(JTextComponent tc, int p0, int p1) Causes the portion of the view responsible for the given part of the model to be repainted.void
BasicTextUI.damageRange
(JTextComponent t, int p0, int p1, Position.Bias p0Bias, Position.Bias p1Bias) Causes the portion of the view responsible for the given part of the model to be repainted.BasicEditorPaneUI.getEditorKit
(JTextComponent tc) Fetches the EditorKit for the UI.BasicTextUI.getEditorKit
(JTextComponent tc) Fetches the EditorKit for the UI.int
BasicTextUI.getNextVisualPositionFrom
(JTextComponent t, int pos, Position.Bias b, int direction, Position.Bias[] biasRet) Provides a way to determine the next visually represented model location that one might place a caret.BasicTextUI.getRootView
(JTextComponent tc) Fetches a View with the allocation of the associated text component (i.e. the root of the hierarchy) that can be traversed to determine how the model is being represented spatially.BasicTextUI.getToolTipText
(JTextComponent t, Point pt) Returns the string to be used as the tooltip at the passed in location.BasicTextUI.modelToView
(JTextComponent tc, int pos) Deprecated.BasicTextUI.modelToView
(JTextComponent tc, int pos, Position.Bias bias) Deprecated.int
BasicTextUI.viewToModel
(JTextComponent tc, Point pt) Deprecated.int
BasicTextUI.viewToModel
(JTextComponent tc, Point pt, Position.Bias[] biasReturn) Deprecated. -
Uses of JTextComponent in javax.swing.plaf.multi
Modifier and TypeMethodDescriptionvoid
MultiTextUI.damageRange
(JTextComponent a, int b, int c) Invokes thedamageRange
method on each UI handled by this object.void
MultiTextUI.damageRange
(JTextComponent a, int b, int c, Position.Bias d, Position.Bias e) Invokes thedamageRange
method on each UI handled by this object.MultiTextUI.getEditorKit
(JTextComponent a) Invokes thegetEditorKit
method on each UI handled by this object.int
MultiTextUI.getNextVisualPositionFrom
(JTextComponent a, int b, Position.Bias c, int d, Position.Bias[] e) Invokes thegetNextVisualPositionFrom
method on each UI handled by this object.MultiTextUI.getRootView
(JTextComponent a) Invokes thegetRootView
method on each UI handled by this object.MultiTextUI.getToolTipText
(JTextComponent a, Point b) Invokes thegetToolTipText
method on each UI handled by this object.MultiTextUI.modelToView
(JTextComponent a, int b) Deprecated.MultiTextUI.modelToView
(JTextComponent a, int b, Position.Bias c) Deprecated.int
MultiTextUI.viewToModel
(JTextComponent a, Point b) Deprecated.int
MultiTextUI.viewToModel
(JTextComponent a, Point b, Position.Bias[] c) Deprecated. -
Uses of JTextComponent in javax.swing.text
Modifier and TypeMethodDescriptionprotected final JTextComponent
DefaultCaret.getComponent()
Gets the text editor component that this caret is is bound to.protected final JTextComponent
TextAction.getFocusedComponent()
Fetches the text component that currently has focus.protected final JTextComponent
TextAction.getTextComponent
(ActionEvent e) Determines the component to use for the action.Modifier and TypeMethodDescriptionvoid
Caret.deinstall
(JTextComponent c) Called when the UI is being removed from the interface of a JTextComponent.void
DefaultCaret.deinstall
(JTextComponent c) Called when the UI is being removed from the interface of a JTextComponent.void
DefaultHighlighter.deinstall
(JTextComponent c) Called when the UI is being removed from the interface of a JTextComponent.void
Highlighter.deinstall
(JTextComponent c) Called when the UI is being removed from the interface of a JTextComponent.int
NavigationFilter.getNextVisualPositionFrom
(JTextComponent text, int pos, Position.Bias bias, int direction, Position.Bias[] biasRet) Returns the next visual position to place the caret at from an existing position.static final int
Utilities.getNextWord
(JTextComponent c, int offs) Determines the start of the next word for the given location.static final Element
Utilities.getParagraphElement
(JTextComponent c, int offs) Determines the element to use for a paragraph/line.static final int
Utilities.getPositionAbove
(JTextComponent c, int offs, float x) Determines the position in the model that is closest to the given view location in the row above.static final int
Utilities.getPositionAbove
(JTextComponent c, int offs, int x) Deprecated.static final int
Utilities.getPositionBelow
(JTextComponent c, int offs, float x) Determines the position in the model that is closest to the given view location in the row below.static final int
Utilities.getPositionBelow
(JTextComponent c, int offs, int x) Deprecated.static final int
Utilities.getPreviousWord
(JTextComponent c, int offs) Determine the start of the prev word for the given location.static final int
Utilities.getRowEnd
(JTextComponent c, int offs) Determines the ending row model position of the row that contains the specified model position.static final int
Utilities.getRowStart
(JTextComponent c, int offs) Determines the starting row model position of the row that contains the specified model position.static final int
Utilities.getWordEnd
(JTextComponent c, int offs) Determines the end of a word for the given location.static final int
Utilities.getWordStart
(JTextComponent c, int offs) Determines the start of a word for the given model location.void
Caret.install
(JTextComponent c) Called when the UI is being installed into the interface of a JTextComponent.void
DefaultCaret.install
(JTextComponent c) Called when the UI is being installed into the interface of a JTextComponent.void
DefaultHighlighter.install
(JTextComponent c) Called when the UI is being installed into the interface of a JTextComponent.void
Highlighter.install
(JTextComponent c) Called when the UI is being installed into the interface of a JTextComponent.void
DefaultHighlighter.DefaultHighlightPainter.paint
(Graphics g, int offs0, int offs1, Shape bounds, JTextComponent c) Paints a highlight.void
Highlighter.HighlightPainter.paint
(Graphics g, int p0, int p1, Shape bounds, JTextComponent c) Renders the highlight.DefaultHighlighter.DefaultHighlightPainter.paintLayer
(Graphics g, int offs0, int offs1, Shape bounds, JTextComponent c, View view) Paints a portion of a highlight.abstract Shape
LayeredHighlighter.LayerPainter.paintLayer
(Graphics g, int p0, int p1, Shape viewBounds, JTextComponent editor, View view) Paints a portion of a highlight.void
DefaultHighlighter.paintLayeredHighlights
(Graphics g, int p0, int p1, Shape viewBounds, JTextComponent editor, View view) When leaf Views (such as LabelView) are rendering they should call into this method.abstract void
LayeredHighlighter.paintLayeredHighlights
(Graphics g, int p0, int p1, Shape viewBounds, JTextComponent editor, View view) When leaf Views (such as LabelView) are rendering they should call into this method. -
Uses of JTextComponent in javax.swing.tree
Modifier and TypeClassDescriptionclass
TextField
used when no editor is supplied.
TextUI.getToolTipText2D(JTextComponent, Point2D)