!7 p { JTextPane pane = jtextpane(); SimpleAttributeSet set = style_bold(); // Set the attributes before adding text pane.setCharacterAttributes(set, true); pane.setText("Eine "); set = new SimpleAttributeSet(); StyleConstants.setItalic(set, true); StyleConstants.setForeground(set, Color.red); StyleConstants.setBackground(set, Color.blue); appendToTextPane(pane, "Kleine ", set); appendToTextPane(pane, "Nachtmusic", style_fontSize(24)); showFrame(pane); }