summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler.java')
-rw-r--r--reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler.java96
1 files changed, 46 insertions, 50 deletions
diff --git a/reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler.java b/reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler.java
index 33591203573f..32f7c54fa08a 100644
--- a/reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler.java
+++ b/reportbuilder/java/com/sun/star/report/pentaho/parser/office/DocumentStylesReadHandler.java
@@ -27,8 +27,6 @@
* for a copy of the LGPLv3 License.
*
************************************************************************/
-
-
package com.sun.star.report.pentaho.parser.office;
import com.sun.star.report.pentaho.OfficeNamespaces;
@@ -50,61 +48,59 @@ import org.xml.sax.SAXException;
*/
public class DocumentStylesReadHandler extends ElementReadHandler
{
- private final OfficeStylesCollection officeStylesCollection;
- private FontFaceDeclsReadHandler fontFaceReadHandler;
-
- public DocumentStylesReadHandler()
- {
- officeStylesCollection = new OfficeStylesCollection();
- }
+ private final OfficeStylesCollection officeStylesCollection;
+ private FontFaceDeclsReadHandler fontFaceReadHandler;
- /**
- * Returns the handler for a child element.
- *
- * @param tagName the tag name.
- * @param atts the attributes.
- * @return the handler or null, if the tagname is invalid.
- *
- * @throws org.xml.sax.SAXException if there is a parsing error.
- */
- protected XmlReadHandler getHandlerForChild(final String uri,
- final String tagName,
- final Attributes atts)
- throws SAXException
- {
- if (!OfficeNamespaces.OFFICE_NS.equals(uri))
+ public DocumentStylesReadHandler()
{
- return null;
+ officeStylesCollection = new OfficeStylesCollection();
}
- if ("font-face-decls".equals(tagName))
+ /**
+ * Returns the handler for a child element.
+ *
+ * @param tagName the tag name.
+ * @param atts the attributes.
+ * @return the handler or null, if the tagname is invalid.
+ *
+ * @throws org.xml.sax.SAXException if there is a parsing error.
+ */
+ protected XmlReadHandler getHandlerForChild(final String uri,
+ final String tagName,
+ final Attributes atts)
+ throws SAXException
{
- if (fontFaceReadHandler == null)
- {
- fontFaceReadHandler = new FontFaceDeclsReadHandler
- (officeStylesCollection.getFontFaceDecls());
- }
- return fontFaceReadHandler;
- }
- else if ("automatic-styles".equals(tagName))
- {
- return new OfficeStylesReadHandler(officeStylesCollection.getAutomaticStyles());
- }
- else if ("styles".equals(tagName))
- {
- return new OfficeStylesReadHandler(officeStylesCollection.getCommonStyles());
+ if (!OfficeNamespaces.OFFICE_NS.equals(uri))
+ {
+ return null;
+ }
+
+ if ("font-face-decls".equals(tagName))
+ {
+ if (fontFaceReadHandler == null)
+ {
+ fontFaceReadHandler = new FontFaceDeclsReadHandler(officeStylesCollection.getFontFaceDecls());
+ }
+ return fontFaceReadHandler;
+ }
+ else if ("automatic-styles".equals(tagName))
+ {
+ return new OfficeStylesReadHandler(officeStylesCollection.getAutomaticStyles());
+ }
+ else if ("styles".equals(tagName))
+ {
+ return new OfficeStylesReadHandler(officeStylesCollection.getCommonStyles());
+ }
+ else if ("master-styles".equals(tagName))
+ {
+ return new MasterStylesReadHandler(officeStylesCollection.getMasterStyles());
+ }
+ return null;
}
- else if ("master-styles".equals(tagName))
+
+ public Element getElement()
{
- return new MasterStylesReadHandler(officeStylesCollection.getMasterStyles());
+ return officeStylesCollection;
}
- return null;
- }
-
-
- public Element getElement()
- {
- return officeStylesCollection;
- }
}