I want to make a StyledDocument from 2 other StyledDocuments in Java. I tried to do something like this:
textPane.setStyledDocument(textPane.getStyledDocument() + styledDocumentMethod());
but it is not possible to combine them by using a "+".
Is there an other possibility of doing this?