LibreOffice Module xmerge (master) 1
|
This class specifies the format for a given spreadsheet cell. More...
Public Member Functions | |
Format () | |
Constructor for creating a new Format . More... | |
Format (int attributes, int fontSize, String fontName) | |
Constructor that creates a new Format object by setting all the format attributes. More... | |
Format (Format fmt) | |
Constructor for creating a new Format object based on an existing one. More... | |
void | clearFormatting () |
Reset this Format description. More... | |
void | setAttribute (int flags, boolean toggle) |
Set one or more text attributes. More... | |
boolean | getAttribute (int attribute) |
Return true if the attribute is set to on. More... | |
void | setCategory (String newCategory) |
Set the formatting category of this object, ie number, date, currency. More... | |
void | setValue (String newValue) |
In the case of formula the contents are set as the formula string and the value of the formula is a formatting attribute. More... | |
void | setFormatSpecifier (String formatString) |
Set the Format specifier for this category. More... | |
void | setDecimalPlaces (int precision) |
Set the precision of the number to be displayed. More... | |
void | setFontName (String fontName) |
Set the font used for this cell. More... | |
String | getFontName () |
Get the font used for this cell. More... | |
void | setFontSize (int fontSize) |
Set the font size (in points) used for this cell. More... | |
int | getFontSize () |
Get the font size (in points) used for this cell. More... | |
void | setVertAlign (int vertAlign) |
Set the vertical alignment used for this cell. More... | |
int | getVertAlign () |
Get the vertical alignment used for this cell. More... | |
void | setAlign (int align) |
Set the alignment used for this cell. More... | |
int | getAlign () |
Get the alignment used for this cell. More... | |
void | setForeground (Color c) |
Set the Foreground Color for this cell. More... | |
Color | getForeground () |
Get the Foreground Color for this cell. More... | |
void | setBackground (Color c) |
Set the Background Color for this cell. More... | |
Color | getBackground () |
Get the Background Color for this cell. More... | |
String | toString () |
Get a String representation of this Format . More... | |
boolean | isDefault () |
Tests if the current Format object has default attribute values. More... | |
boolean | isSubset (Format rhs) |
Return true if passed Format specifies as much or less than this Format , and nothing it specifies contradicts this Format . More... | |
Static Public Attributes | |
final static int | RIGHT_ALIGN = 0x01 |
Horizontal Alignment Constants. More... | |
final static int | CENTER_ALIGN = 0x02 |
final static int | LEFT_ALIGN = 0x03 |
final static int | TOP_ALIGN = 0x01 |
Vertical Alignment Constants. More... | |
final static int | MIDDLE_ALIGN = 0x02 |
final static int | BOTTOM_ALIGN = 0x03 |
final static int | BOLD = 0x01 |
Indicates bold text. More... | |
final static int | ITALIC = 0x02 |
Indicates italic text. More... | |
final static int | UNDERLINE = 0x04 |
Indicates underlined text. More... | |
final static int | STRIKETHRU = 0x08 |
Indicates strike-through in the text. More... | |
final static int | SUPERSCRIPT = 0x10 |
Indicates superscripted text. More... | |
final static int | SUBSCRIPT = 0x20 |
Indicates subscripted text. More... | |
final static int | LEFT_BORDER = 0x40 |
final static int | RIGHT_BORDER = 0x80 |
final static int | TOP_BORDER = 0x100 |
final static int | BOTTOM_BORDER = 0x200 |
final static int | WORD_WRAP = 0x400 |
Private Member Functions | |
String | getCategory () |
Return the formatting category of the object. More... | |
String | getValue () |
In the case of Formula returns the value of the formula. More... | |
String | getFormatSpecifier () |
Get the Format specifier for this category. More... | |
int | getDecimalPlaces () |
Get the number of decimal places displayed. More... | |
Private Attributes | |
int | align |
int | vertAlign |
String | category |
String | value |
String | formatSpecifier |
int | decimalPlaces |
String | fontName |
Font name. More... | |
int | sizeInPoints |
Font size in points. More... | |
Color | foreground |
Color | background |
int | attributes = 0 |
Values of text attributes. More... | |
int | mask = 0 |
Bitwise mask of text attributes. More... | |
This class specifies the format for a given spreadsheet cell.
Definition at line 26 of file Format.java.
|
inline |
Constructor for creating a new Format
.
Definition at line 80 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting().
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.isDefault().
|
inline |
Constructor that creates a new Format
object by setting all the format attributes.
attributes | Attributes flags (alignment, bold, etc.) |
fontSize | Size of the font in points. |
fontName | Name of the font to use. |
Definition at line 92 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.attributes, org.openoffice.xmerge.converter.xml.sxc.Format.fontName, and org.openoffice.xmerge.converter.xml.sxc.Format.sizeInPoints.
|
inline |
Constructor for creating a new Format
object based on an existing one.
fmt | Format to copy. |
Definition at line 105 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.align, org.openoffice.xmerge.converter.xml.sxc.Format.attributes, org.openoffice.xmerge.converter.xml.sxc.Format.background, org.openoffice.xmerge.converter.xml.sxc.Format.category, org.openoffice.xmerge.converter.xml.sxc.Format.decimalPlaces, org.openoffice.xmerge.converter.xml.sxc.Format.fontName, org.openoffice.xmerge.converter.xml.sxc.Format.foreground, org.openoffice.xmerge.converter.xml.sxc.Format.formatSpecifier, org.openoffice.xmerge.converter.xml.sxc.Format.getAlign(), org.openoffice.xmerge.converter.xml.sxc.Format.getBackground(), org.openoffice.xmerge.converter.xml.sxc.Format.getCategory(), org.openoffice.xmerge.converter.xml.sxc.Format.getDecimalPlaces(), org.openoffice.xmerge.converter.xml.sxc.Format.getFontName(), org.openoffice.xmerge.converter.xml.sxc.Format.getForeground(), org.openoffice.xmerge.converter.xml.sxc.Format.getFormatSpecifier(), org.openoffice.xmerge.converter.xml.sxc.Format.getValue(), org.openoffice.xmerge.converter.xml.sxc.Format.getVertAlign(), org.openoffice.xmerge.converter.xml.sxc.Format.mask, org.openoffice.xmerge.converter.xml.sxc.Format.sizeInPoints, org.openoffice.xmerge.converter.xml.sxc.Format.value, and org.openoffice.xmerge.converter.xml.sxc.Format.vertAlign.
|
inline |
Reset this Format
description.
Definition at line 125 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.align, org.openoffice.xmerge.converter.xml.sxc.Format.attributes, org.openoffice.xmerge.converter.xml.sxc.Format.background, org.openoffice.xmerge.converter.xml.sxc.Format.BOTTOM_ALIGN, org.openoffice.xmerge.converter.xml.sxc.Format.category, org.openoffice.xmerge.converter.xml.sxc.Format.decimalPlaces, org.openoffice.xmerge.converter.xml.sxc.Format.fontName, org.openoffice.xmerge.converter.xml.sxc.Format.foreground, org.openoffice.xmerge.converter.xml.sxc.Format.formatSpecifier, org.openoffice.xmerge.converter.xml.sxc.Format.LEFT_ALIGN, org.openoffice.xmerge.converter.xml.sxc.Format.mask, org.openoffice.xmerge.converter.xml.sxc.Format.sizeInPoints, org.openoffice.xmerge.converter.xml.sxc.Format.value, and org.openoffice.xmerge.converter.xml.sxc.Format.vertAlign.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format(), and org.openoffice.xmerge.converter.xml.sxc.SxcDocumentSerializer.traverseCell().
|
inline |
Get the alignment used for this cell.
Definition at line 318 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.align.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
inline |
Return true
if the attribute
is set to on.
true
if attribute
is set to on, otherwise false
. Definition at line 164 of file Format.java.
References attribute, org.openoffice.xmerge.converter.xml.sxc.Format.attributes, and org.openoffice.xmerge.converter.xml.sxc.Format.mask.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
inline |
Get the Background Color
for this cell.
Color
value. Definition at line 356 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.background, and Color.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
inlineprivate |
Return the formatting category of the object.
Definition at line 191 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.category, and String.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format(), and org.openoffice.xmerge.converter.xml.sxc.Format.toString().
|
inlineprivate |
Get the number of decimal places displayed.
Definition at line 246 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.decimalPlaces.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format().
|
inline |
Get the font used for this cell.
Definition at line 264 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.fontName, and String.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
inline |
Get the font size (in points) used for this cell.
Definition at line 282 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.sizeInPoints.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
inline |
Get the Foreground Color
for this cell.
Color
value. Definition at line 337 of file Format.java.
References Color, and org.openoffice.xmerge.converter.xml.sxc.Format.foreground.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
inlineprivate |
Get the Format
specifier for this category.
Format
specifier for this category. Definition at line 228 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.formatSpecifier, and String.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format().
|
inlineprivate |
In the case of Formula returns the value of the formula.
Definition at line 200 of file Format.java.
References String, and org.openoffice.xmerge.converter.xml.sxc.Format.value.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format(), and org.openoffice.xmerge.converter.xml.sxc.Format.toString().
|
inline |
Get the vertical alignment used for this cell.
Definition at line 300 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.vertAlign.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
inline |
Tests if the current Format
object has default attribute values.
true
if it contains default value. Definition at line 375 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.align, org.openoffice.xmerge.converter.xml.sxc.Format.attributes, org.openoffice.xmerge.converter.xml.sxc.Format.background, org.openoffice.xmerge.converter.xml.sxc.Format.foreground, org.openoffice.xmerge.converter.xml.sxc.Format.Format(), and org.openoffice.xmerge.converter.xml.sxc.Format.vertAlign.
Referenced by org.openoffice.xmerge.converter.xml.sxc.SxcDocumentSerializer.traverseCell().
|
inline |
Return true if passed Format
specifies as much or less than this Format
, and nothing it specifies contradicts this Format
.
rhs | The Format to check. |
true
if rhs
is a subset, false
otherwise. Definition at line 402 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.align, org.openoffice.xmerge.converter.xml.sxc.Format.attributes, org.openoffice.xmerge.converter.xml.sxc.Format.background, org.openoffice.xmerge.converter.xml.sxc.Format.fontName, org.openoffice.xmerge.converter.xml.sxc.Format.foreground, org.openoffice.xmerge.converter.xml.sxc.Format.sizeInPoints, and org.openoffice.xmerge.converter.xml.sxc.Format.vertAlign.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.isSubset().
|
inline |
Set the alignment used for this cell.
align | The alignment to use. |
Definition at line 309 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.align.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute().
|
inline |
Set one or more text attributes.
flags | Flag attributes to set. |
toggle | true to set flags, false to clear them. |
Definition at line 146 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.attributes, and org.openoffice.xmerge.converter.xml.sxc.Format.mask.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute().
|
inline |
Set the Background Color
for this cell.
c | A Color object representing the background color. |
Definition at line 346 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.background, and Color.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute().
|
inline |
Set the formatting category of this object, ie number, date, currency.
The OfficeConstants
class contains string constants for the category types.
newCategory | The name of the category to be set. |
Definition at line 180 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.category.
Referenced by org.openoffice.xmerge.converter.xml.sxc.SxcDocumentSerializer.traverseCell().
|
inline |
Set the precision of the number to be displayed.
precision | The number of decimal places to display. |
Definition at line 237 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.decimalPlaces, and precision.
Referenced by org.openoffice.xmerge.converter.xml.sxc.SxcDocumentSerializer.traverseCell().
|
inline |
Set the font used for this cell.
fontName | The name of the font. |
Definition at line 255 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.fontName.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute().
|
inline |
Set the font size (in points) used for this cell.
fontSize | The font size in points. |
Definition at line 273 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.sizeInPoints.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute().
|
inline |
Set the Foreground Color
for this cell.
c | A Color object representing the foreground color. |
Definition at line 327 of file Format.java.
References Color, and org.openoffice.xmerge.converter.xml.sxc.Format.foreground.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute().
|
inline |
Set the Format
specifier for this category.
formatString | The new Format specifier. |
Definition at line 219 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.formatSpecifier.
|
inline |
In the case of formula the contents are set as the formula string and the value of the formula is a formatting attribute.
newValue | the formula value. |
Definition at line 210 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.value.
Referenced by org.openoffice.xmerge.converter.xml.sxc.SxcDocumentSerializer.traverseCell().
|
inline |
Set the vertical alignment used for this cell.
vertAlign | The vertical alignment. |
Definition at line 291 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.vertAlign.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute().
|
inline |
Get a String
representation of this Format
.
String
indicating the value and category. Definition at line 366 of file Format.java.
References org.openoffice.xmerge.converter.xml.sxc.Format.getCategory(), org.openoffice.xmerge.converter.xml.sxc.Format.getValue(), and String.
|
private |
Definition at line 58 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getAlign(), org.openoffice.xmerge.converter.xml.sxc.Format.isDefault(), org.openoffice.xmerge.converter.xml.sxc.Format.isSubset(), and org.openoffice.xmerge.converter.xml.sxc.Format.setAlign().
|
private |
Values of text attributes.
Definition at line 73 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getAttribute(), org.openoffice.xmerge.converter.xml.sxc.Format.isDefault(), org.openoffice.xmerge.converter.xml.sxc.Format.isSubset(), and org.openoffice.xmerge.converter.xml.sxc.Format.setAttribute().
|
private |
Definition at line 70 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getBackground(), org.openoffice.xmerge.converter.xml.sxc.Format.isDefault(), org.openoffice.xmerge.converter.xml.sxc.Format.isSubset(), and org.openoffice.xmerge.converter.xml.sxc.Format.setBackground().
|
static |
Indicates bold text.
Definition at line 39 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Definition at line 36 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Definition at line 54 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
private |
Definition at line 60 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getCategory(), and org.openoffice.xmerge.converter.xml.sxc.Format.setCategory().
|
static |
Definition at line 30 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
private |
Definition at line 63 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getDecimalPlaces(), and org.openoffice.xmerge.converter.xml.sxc.Format.setDecimalPlaces().
|
private |
Font name.
Definition at line 66 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getFontName(), org.openoffice.xmerge.converter.xml.sxc.Format.isSubset(), and org.openoffice.xmerge.converter.xml.sxc.Format.setFontName().
|
private |
Definition at line 70 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getForeground(), org.openoffice.xmerge.converter.xml.sxc.Format.isDefault(), org.openoffice.xmerge.converter.xml.sxc.Format.isSubset(), and org.openoffice.xmerge.converter.xml.sxc.Format.setForeground().
|
private |
Definition at line 62 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getFormatSpecifier(), and org.openoffice.xmerge.converter.xml.sxc.Format.setFormatSpecifier().
|
static |
Indicates italic text.
Definition at line 41 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Definition at line 31 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Definition at line 51 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
private |
Bitwise mask of text attributes.
Definition at line 75 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getAttribute(), and org.openoffice.xmerge.converter.xml.sxc.Format.setAttribute().
|
static |
Definition at line 35 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Horizontal Alignment Constants.
Definition at line 29 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Definition at line 52 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
private |
Font size in points.
Definition at line 68 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getFontSize(), org.openoffice.xmerge.converter.xml.sxc.Format.isSubset(), and org.openoffice.xmerge.converter.xml.sxc.Format.setFontSize().
|
static |
Indicates strike-through in the text.
Definition at line 45 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Indicates subscripted text.
Definition at line 49 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.getResolved(), org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Indicates superscripted text.
Definition at line 47 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Vertical Alignment Constants.
Definition at line 34 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Definition at line 53 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
static |
Indicates underlined text.
Definition at line 43 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().
|
private |
Definition at line 61 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getValue(), and org.openoffice.xmerge.converter.xml.sxc.Format.setValue().
|
private |
Definition at line 59 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.Format.clearFormatting(), org.openoffice.xmerge.converter.xml.sxc.Format.Format(), org.openoffice.xmerge.converter.xml.sxc.Format.getVertAlign(), org.openoffice.xmerge.converter.xml.sxc.Format.isDefault(), org.openoffice.xmerge.converter.xml.sxc.Format.isSubset(), and org.openoffice.xmerge.converter.xml.sxc.Format.setVertAlign().
|
static |
Definition at line 56 of file Format.java.
Referenced by org.openoffice.xmerge.converter.xml.sxc.CellStyle.handleAttribute(), and org.openoffice.xmerge.converter.xml.sxc.CellStyle.writeAttributes().