Class MultiTextUI
java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.TextUI
javax.swing.plaf.multi.MultiTextUI
A multiplexing UI used to combine
TextUI
s.
This file was automatically generated by AutoMulti.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Vector
<ComponentUI> The vector containing the real UIs. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
contains
(JComponent a, int b, int c) Invokes thecontains
method on each UI handled by this object.static ComponentUI
Returns a multiplexing UI instance if any of the auxiliaryLookAndFeel
s supports this UI.void
damageRange
(JTextComponent a, int b, int c) Invokes thedamageRange
method on each UI handled by this object.void
damageRange
(JTextComponent a, int b, int c, Position.Bias d, Position.Bias e) Invokes thedamageRange
method on each UI handled by this object.getAccessibleChild
(JComponent a, int b) Invokes thegetAccessibleChild
method on each UI handled by this object.int
Invokes thegetAccessibleChildrenCount
method on each UI handled by this object.Invokes thegetEditorKit
method on each UI handled by this object.Invokes thegetMaximumSize
method on each UI handled by this object.Invokes thegetMinimumSize
method on each UI handled by this object.int
getNextVisualPositionFrom
(JTextComponent a, int b, Position.Bias c, int d, Position.Bias[] e) Invokes thegetNextVisualPositionFrom
method on each UI handled by this object.Invokes thegetPreferredSize
method on each UI handled by this object.Invokes thegetRootView
method on each UI handled by this object.Invokes thegetToolTipText
method on each UI handled by this object.getUIs()
Returns the list of UIs associated with this multiplexing UI.void
Invokes theinstallUI
method on each UI handled by this object.modelToView
(JTextComponent a, int b) Deprecated.modelToView
(JTextComponent a, int b, Position.Bias c) Deprecated.void
paint
(Graphics a, JComponent b) Invokes thepaint
method on each UI handled by this object.void
Invokes theuninstallUI
method on each UI handled by this object.void
update
(Graphics a, JComponent b) Invokes theupdate
method on each UI handled by this object.int
viewToModel
(JTextComponent a, Point b) Deprecated.int
viewToModel
(JTextComponent a, Point b, Position.Bias[] c) Deprecated.Methods declared in class TextUI
getToolTipText2D, modelToView2D, viewToModel2D
Modifier and TypeMethodDescriptionReturns the string to be used as the tooltip at the passed in location.modelToView2D
(JTextComponent t, int pos, Position.Bias bias) Converts the given location in the model to a place in the view coordinate system.int
viewToModel2D
(JTextComponent t, Point2D pt, Position.Bias[] biasReturn) Provides a mapping from the view coordinate space to the logical coordinate space of the model.Methods declared in class ComponentUI
getBaseline, getBaselineResizeBehavior
Modifier and TypeMethodDescriptionint
getBaseline
(JComponent c, int width, int height) Returns the baseline.Returns an enum indicating how the baseline of the component changes as the size changes.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
uis
The vector containing the real UIs. This is populated in the call tocreateUI
, and can be obtained by calling thegetUIs
method. The first element is guaranteed to be the real UI obtained from the default look and feel.
-
-
Constructor Details
-
MultiTextUI
public MultiTextUI()Constructs aMultiTextUI
.
-
-
Method Details
-
getUIs
Returns the list of UIs associated with this multiplexing UI. This allows processing of the UIs by an application aware of multiplexing UIs on components.- Returns:
- an array of the UI delegates
-
getToolTipText
Invokes thegetToolTipText
method on each UI handled by this object.- Overrides:
getToolTipText
in classTextUI
- Parameters:
a
- the text component for which this UI is installedb
- aPoint
specifying location for which to get a tooltip- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- Since:
- 1.4
- See Also:
-
modelToView
@Deprecated(since="9") public Rectangle modelToView(JTextComponent a, int b) throws BadLocationException Deprecated.Invokes themodelToView
method on each UI handled by this object.- Specified by:
modelToView
in classTextUI
- Parameters:
a
- the text component for which this UI is installedb
- the local location in the model to translate >= 0- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- Throws:
BadLocationException
- if the given position does not represent a valid location in the associated document
-
modelToView
@Deprecated(since="9") public Rectangle modelToView(JTextComponent a, int b, Position.Bias c) throws BadLocationException Deprecated.Invokes themodelToView
method on each UI handled by this object.- Specified by:
modelToView
in classTextUI
- Parameters:
a
- the text component for which this UI is installedb
- the local location in the model to translate >= 0c
- the bias for the position- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- Throws:
BadLocationException
- if the given position does not represent a valid location in the associated document
-
viewToModel
Deprecated.Invokes theviewToModel
method on each UI handled by this object.- Specified by:
viewToModel
in classTextUI
- Parameters:
a
- the text component for which this UI is installedb
- the location in the view to translate. This should be in the same coordinate system as the mouse events.- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
-
viewToModel
Deprecated.Invokes theviewToModel
method on each UI handled by this object.- Specified by:
viewToModel
in classTextUI
- Parameters:
a
- the text component for which this UI is installedb
- the location in the view to translate. This should be in the same coordinate system as the mouse events.c
- filled in by this method to indicate whether the point given is closer to the previous or the next character in the model- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
-
getNextVisualPositionFrom
public int getNextVisualPositionFrom(JTextComponent a, int b, Position.Bias c, int d, Position.Bias[] e) throws BadLocationException Invokes thegetNextVisualPositionFrom
method on each UI handled by this object.- Specified by:
getNextVisualPositionFrom
in classTextUI
- Parameters:
a
- the text component for which this UI is installedb
- the position to convert >= 0c
- the bias for the positiond
- the direction from the current position that can be thought of as the arrow keys typically found on a keyboard. This may be SwingConstants.WEST, SwingConstants.EAST, SwingConstants.NORTH, or SwingConstants.SOUTHe
- an array to contain the bias for the returned position- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- Throws:
BadLocationException
- for a bad location within a document model
-
damageRange
Invokes thedamageRange
method on each UI handled by this object.- Specified by:
damageRange
in classTextUI
- Parameters:
a
- the text component for which this UI is installedb
- the beginning of the range >= 0c
- the end of the range >= p0
-
damageRange
Invokes thedamageRange
method on each UI handled by this object.- Specified by:
damageRange
in classTextUI
- Parameters:
a
- the text component for which this UI is installedb
- the beginning of the range >= 0c
- the end of the range >= p0d
- the bias of the first character position, toward the previous character or the next charactere
- the bias of the second character position, toward the previous character or the next character
-
getEditorKit
Invokes thegetEditorKit
method on each UI handled by this object.- Specified by:
getEditorKit
in classTextUI
- Parameters:
a
- the text component for which this UI is installed- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
-
getRootView
Invokes thegetRootView
method on each UI handled by this object.- Specified by:
getRootView
in classTextUI
- Parameters:
a
- the text component for which this UI is installed- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
-
contains
Invokes thecontains
method on each UI handled by this object.- Overrides:
contains
in classComponentUI
- Parameters:
a
- the component where the x,y location is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple componentsb
- the x coordinate of the pointc
- the y coordinate of the point- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- See Also:
-
update
Invokes theupdate
method on each UI handled by this object.- Overrides:
update
in classComponentUI
- Parameters:
a
- theGraphics
context in which to paintb
- the component being painted; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- See Also:
-
createUI
Returns a multiplexing UI instance if any of the auxiliaryLookAndFeel
s supports this UI. Otherwise, just returns the UI object obtained from the defaultLookAndFeel
.- Parameters:
a
- the component to create the UI for- Returns:
- the UI delegate created
-
installUI
Invokes theinstallUI
method on each UI handled by this object.- Overrides:
installUI
in classComponentUI
- Parameters:
a
- the component where this UI delegate is being installed- See Also:
-
uninstallUI
Invokes theuninstallUI
method on each UI handled by this object.- Overrides:
uninstallUI
in classComponentUI
- Parameters:
a
- the component from which this UI delegate is being removed; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- See Also:
-
paint
Invokes thepaint
method on each UI handled by this object.- Overrides:
paint
in classComponentUI
- Parameters:
a
- theGraphics
context in which to paintb
- the component being painted; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- See Also:
-
getPreferredSize
Invokes thegetPreferredSize
method on each UI handled by this object.- Overrides:
getPreferredSize
in classComponentUI
- Parameters:
a
- the component whose preferred size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- See Also:
-
getMinimumSize
Invokes thegetMinimumSize
method on each UI handled by this object.- Overrides:
getMinimumSize
in classComponentUI
- Parameters:
a
- the component whose minimum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- See Also:
-
getMaximumSize
Invokes thegetMaximumSize
method on each UI handled by this object.- Overrides:
getMaximumSize
in classComponentUI
- Parameters:
a
- the component whose maximum size is being queried; this argument is often ignored, but might be used if the UI object is stateless and shared by multiple components- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- See Also:
-
getAccessibleChildrenCount
Invokes thegetAccessibleChildrenCount
method on each UI handled by this object.- Overrides:
getAccessibleChildrenCount
in classComponentUI
- Parameters:
a
-JComponent
for which to get count of accessible children- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- See Also:
-
getAccessibleChild
Invokes thegetAccessibleChild
method on each UI handled by this object.- Overrides:
getAccessibleChild
in classComponentUI
- Parameters:
a
- aJComponent
for which to get a child objectb
- zero-based index of child- Returns:
- the value obtained from the first UI, which is
the UI obtained from the default
LookAndFeel
- See Also:
-
TextUI.modelToView2D(JTextComponent, int, Position.Bias)