java.lang.Object | ||
↳ | javax.swing.plaf.ComponentUI | |
↳ | javax.swing.plaf.TextUI |
![]() |
Text editor user interface
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Causes the portion of the view responsible for the
given part of the model to be repainted.
| |||||||||||
Causes the portion of the view responsible for the
given part of the model to be repainted.
| |||||||||||
Fetches the binding of services that set a policy
for the type of document being edited.
| |||||||||||
Provides a way to determine the next visually represented model
location that one might place a caret.
| |||||||||||
Fetches a View with the allocation of the associated
text component (i.e.
| |||||||||||
Returns the string to be used as the tooltip at the passed in location.
| |||||||||||
Converts the given location in the model to a place in
the view coordinate system.
| |||||||||||
Converts the given location in the model to a place in
the view coordinate system.
| |||||||||||
Provides a mapping from the view coordinate space to the logical
coordinate space of the model.
| |||||||||||
Converts the given place in the view coordinate system
to the nearest representative location in the model.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Causes the portion of the view responsible for the given part of the model to be repainted.
p0 | the beginning of the range >= 0 |
---|---|
p1 | the end of the range >= p0 |
Causes the portion of the view responsible for the given part of the model to be repainted.
p0 | the beginning of the range >= 0 |
---|---|
p1 | the end of the range >= p0 |
Fetches the binding of services that set a policy for the type of document being edited. This contains things like the commands available, stream readers and writers, etc.
Provides a way to determine the next visually represented model location that one might place a caret. Some views may not be visible, they might not be in the same order found in the model, or they just might not allow access to some of the locations in the model.
t | the text component for which this UI is installed |
---|---|
pos | the position to convert >= 0 |
b | the bias for the position |
direction | 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.SOUTH |
biasRet | an array to contain the bias for the returned position |
BadLocationException | |
IllegalArgumentException | for an invalid direction |
BadLocationException |
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.
Returns the string to be used as the tooltip at the passed in location.
Converts the given location in the model to a place in the view coordinate system.
pos | the local location in the model to translate >= 0 |
---|
BadLocationException | if the given position does not represent a valid location in the associated document |
---|
Converts the given location in the model to a place in the view coordinate system.
pos | the local location in the model to translate >= 0 |
---|
BadLocationException | if the given position does not represent a valid location in the associated document |
---|
Provides a mapping from the view coordinate space to the logical coordinate space of the model.
pt | the location in the view to translate. This should be in the same coordinate system as the mouse events. |
---|---|
biasReturn | filled in by this method to indicate whether the point given is closer to the previous or the next character in the model |
Converts the given place in the view coordinate system to the nearest representative location in the model.
pt | the location in the view to translate. This should be in the same coordinate system as the mouse events. |
---|