| java.lang.Object javax.swing.plaf.ComponentUI org.netbeans.modules.visualweb.text.DesignerPaneBaseUI
All known Subclasses: org.netbeans.modules.visualweb.designer.DesignerPaneUI,
DesignerPaneBaseUI | abstract public class DesignerPaneBaseUI extends ComponentUI (Code) | | Text editor user interface
author: Timothy Prinzing version: 1.31 01/23/03 |
createCaret | protected DesignerCaret createCaret()(Code) | | Creates the object to use for a caret. By default an
instance of BasicCaret is created. This method
can be redefined to provide something else that implements
the InputPosition interface or a subclass of JCaret.
the caret object |
getNextVisualPositionFrom | abstract public DomPosition getNextVisualPositionFrom(DesignerPaneBase t, DomPosition pos, int direction)(Code) | | 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.
Parameters: pos - the position to convert >= 0 Parameters: a - the allocated region to render into Parameters: direction - the direction from the current position that canbe thought of as the arrow keys typically found on a keyboard.This may be SwingConstants.WEST, SwingConstants.EAST,SwingConstants.NORTH, or SwingConstants.SOUTH. the location within the model that best represents the nextlocation visual position. exception: BadLocationException - exception: IllegalArgumentException - for an invalid direction |
getPropertyPrefix | abstract protected String getPropertyPrefix()(Code) | | Fetches the name used as a key to lookup properties through the
UIManager. This is used as a prefix to all the standard
text properties.
the name ("EditorPane") |
|
|