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 the 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 | Field and Description |
---|---|
private Style |
Caption.CaptionKind._style |
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 |
---|---|
private static boolean |
Style.usableForCaption(java.lang.String styleNameOrId,
Style style) |
Constructor and Description |
---|
Caption.CaptionKind(Style style) |
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)
You'll always use this one for regular text and tables.
|
java.lang.String |
WordHelper.appendTextWithStyle(Range<O> range,
java.lang.String newText,
Style style) |
int |
WordHelper.insertTable(Range<O> range,
PropertiesDoc doc,
Style tabhead) |
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) |
private int |
DocWordWriter.doInsertTable(Range<com.jacob.com.Dispatch> range,
PropertiesDoc doc,
Style tabhead) |
(package private) void |
DocWordWriter.fillCellWithHtml(com.jacob.com.Dispatch table,
int i,
int j,
boolean isFormatted,
java.lang.String val,
Style style) |
private void |
DocWordWriter.formatTable(com.jacob.com.Dispatch table,
PropertiesDoc doc,
Style tabhead,
org.apache.log4j.Level level) |
int |
DocWordWriter.insertTable(Range<com.jacob.com.Dispatch> range,
PropertiesDoc doc,
Style tabhead) |
private void |
DocWordWriter.setRangeStyle(com.jacob.com.Dispatch range,
Style style) |
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) |
private int |
DocxWordWriter.doInsertTable(Range<java.lang.Object> range,
PropertiesDoc doc,
Style tabhead) |
int |
DocxWordWriter.insertTable(Range<java.lang.Object> range,
PropertiesDoc doc,
Style tabhead) |
Copyright 2009-2015 Tatjana (Tanja) Kostic