* Get the format string that represents this style.
* @return the format string
*/
public String getFormat() {
String result = "";
NumberAmPmElement ampmEle = OdfElement.findFirstChildNode(NumberAmPmElement.class, this);
Node child = this.getFirstChild();
while (child != null) {
if (child instanceof OdfElement) {
if (child instanceof NumberDayElement) {
NumberDayElement ele = (NumberDayElement) child;