Package | Description |
---|---|
org.tanjakostic.jcleancim.docgen.writer |
Classes and interfaces responsible for document generation out of the UML model.
|
org.tanjakostic.jcleancim.docgen.writer.word |
Classes specific to writing MS documents.
|
org.tanjakostic.jcleancim.docgen.writer.word.doc |
Classes specific to writing MS documents by means of automation API through Java-COM bridge (Jacob); this implementation is
extremely slow (it requires MS Word application and its COM API is just slow), but it supports
both .doc and .docx MS Word formats.
|
org.tanjakostic.jcleancim.docgen.writer.word.docx |
Classes specific to writing MS documents in OpenXML format; this implementation is fast (it does
not require MS Word application), but it supports only .docx MS Word format.
|
Modifier and Type | Method and Description |
---|---|
static Style |
Style.getHeadingStyle(int outlineLevel) |
Style |
Caption.getStyle() |
Style |
Caption.CaptionKind.getStyle() |
static Style |
Style.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Style[] |
Style.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
WordHelper.appendHtmlTextInNewParagraphWithStyle(Range<O> range,
java.lang.String newMarkup,
Style style) |
java.lang.String |
WordHelper.appendRawTextInNewParagraphWithStyle(Range<O> range,
java.lang.String newText,
Style style) |
java.lang.String |
WordHelper.appendTextInNewParagraphWithStyle(Range<O> range,
TextDescription newText,
Style style) |
java.lang.String |
AbstractWordWriter.appendTextInNewParagraphWithStyle(Range<O> range,
TextDescription newText,
Style style) |
java.lang.String |
WordHelper.appendTextWithStyle(Range<O> range,
java.lang.String newText,
Style style) |
int |
WordHelper.insertTable(Range<O> range,
PropertiesDoc doc,
Style tabhead,
boolean addBookmarks) |
Cursor<O> |
WordWriter.writeClassFromPackage(Cursor<O> cursor,
ClassDoc doc,
Style headStyle)
Writes all related to a class at the end of range in
initCursor . |
Cursor<O> |
AbstractWordWriter.writeClassFromPackage(Cursor<O> cursor,
ClassDoc doc,
Style headStyle) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
DocWordWriter.appendHtmlTextInNewParagraphWithStyle(Range<com.jacob.com.Dispatch> range,
java.lang.String newMarkup,
Style style) |
java.lang.String |
DocWordWriter.appendRawTextInNewParagraphWithStyle(Range<com.jacob.com.Dispatch> range,
java.lang.String newText,
Style style) |
java.lang.String |
DocWordWriter.appendTextWithStyle(Range<com.jacob.com.Dispatch> range,
java.lang.String newText,
Style style) |
int |
DocWordWriter.insertTable(Range<com.jacob.com.Dispatch> range,
PropertiesDoc doc,
Style tabhead,
boolean addBookmarks) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
DocxWordWriter.appendHtmlTextInNewParagraphWithStyle(Range<java.lang.Object> range,
java.lang.String newMarkup,
Style style) |
java.lang.String |
DocxWordWriter.appendRawTextInNewParagraphWithStyle(Range<java.lang.Object> range,
java.lang.String newText,
Style style) |
java.lang.String |
DocxWordWriter.appendTextWithStyle(Range<java.lang.Object> range,
java.lang.String newText,
Style style) |
int |
DocxWordWriter.insertTable(Range<java.lang.Object> range,
PropertiesDoc doc,
Style tabhead,
boolean addBookmarks) |
Copyright 2009-2016 Tatjana (Tanja) Kostic