List of usage examples for javax.swing.plaf TextUI getRootView
public abstract View getRootView(JTextComponent t);
From source file:TextComponentDisplay.java
public static void displayViews(JTextComponent comp, PrintStream out) { TextUI textUI = (TextUI) comp.getUI(); View rootView = textUI.getRootView(comp); displayView(rootView, 0, out);/*from ww w. j a v a2 s . c o m*/ }