Searched defs:getRootView (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DTextUI.java154 public abstract View getRootView(JTextComponent t); method in class:TextUI
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiTextUI.java205 * Invokes the <code>getRootView</code> method on each UI handled by this object.
210 public View getRootView(JTextComponent a) { method in class:MultiTextUI
212 ((TextUI) (uis.elementAt(0))).getRootView(a);
214 ((TextUI) (uis.elementAt(i))).getRootView(a);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTextUI.java1212 * @see TextUI#getRootView
1214 public View getRootView(JTextComponent tc) { method in class:BasicTextUI
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java130 private View getRootView() { method in class:AccessibleHTML
131 return getTextComponent().getUI().getRootView(getTextComponent());
2795 View rootView = getRootView();
2819 View rootView = getRootView();
H A DHTMLEditorKit.java2139 private View getRootView(JEditorPane editor) { method in class:HTMLEditorKit.ActivateLinkAction
2140 return editor.getUI().getRootView(editor);
2149 View rootView = getRootView(editor);

Completed in 69 milliseconds