Paul Reiners
Posts: 3
Nickname: reiners23
Registered: Feb, 2010
|
|
Insert one DefaultStyledDocument into another DefaultStyledDocument
|
Posted: Jun 9, 2010 8:06 AM
|
|
|
Advertisement
|
I want to insert one DefaultStyledDocument into another DefaultStyledDocument. How do I do this? I know of this method:
AbstractDocument.insertString(int offs,
String str,
AttributeSet a)
What I really want is something like this:
DefaultStyledDocument.insertDocument(int offs,
AbstractDocument doc)
Is there a way of doing this?
|
|