static JTextPane jtextpane() { ret new JTextPane; } static JTextPane jtextpane(S text, AttributeSet attributes) { JTextPane pane = jtextpane(); pane.setCharacterAttributes(attributes, true); pane.setText(text); ret pane; }