Hi support,
Please note that you cannot add any comment object with the latest Aspose.Words for Java (the one from 10/19/2008). You can test this by running the example from documentation:
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.write("Some text is added.");
Comment comment = new Comment(doc);
builder.getCurrentParagraph().appendChild(comment);
comment.getParagraphs().add(new Paragraph(doc));
comment.getFirstParagraph().getRuns().add(new Run(doc, "Comment text."));
doc.save("C:\Temp\docCommentsExampleFromDocumentation.doc");
Please advice.
Regards,
Milan