Used to represent the current state of the font size VDXML style property.
124125126127128129130131132
} private void checkCharacterSize(VDXMLFontSizeValue expectedCharSize, Styles styles) { VDXMLFontSizeValue actualCharSize = factory.getCharacterSize( styles.getPropertyValues()); assertEquals("", expectedCharSize, actualCharSize); }
123124125126127128129130131132133
// // Character Display // // Font Size VDXMLFontSizeValue fontSize = getCharacterSize(propertyValues); if (fontSize != null) { result = allocate(result); result.setFontSize( new VDXMLFontSizeProperty(fontSize)); }