Inserting a Component into a Text Pane try { Style style = doc.addStyle("StyleName", null); StyleConstants.setComponent( style, new JButton("OK")); doc.insertString(doc.getLength(), "ignored text", style); } catch (BadLocationException e) { }