/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
package mod._sw;
import java.io.PrintWriter;
import lib.TestCase;
import lib.TestEnvironment;
import lib.TestParameters;
import util.SOfficeFactory;
import util.XMLTools;
import com.sun.star.beans.XPropertySet;
import com.sun.star.document.XExporter;
import com.sun.star.frame.XController;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.text.XTextDocument;
import com.sun.star.uno.Any;
import com.sun.star.uno.Type;
import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface;
import com.sun.star.view.XViewSettingsSupplier;
import com.sun.star.xml.sax.XDocumentHandler;
/**
* Test for object which is represented by service
* com.sun.star.comp.Calc.XMLSettingsExporter
.
* Object implements the following interfaces : *
com::sun::star::lang::XInitialization
com::sun::star::document::ExportFilter
com::sun::star::document::XFilter
com::sun::star::document::XExporter
com::sun::star::beans::XPropertySet
com.sun.star.comp.Calc.XMLSettingsExporter
with
* argument which is an implementation of XDocumentHandler
* and which can check if required tags and character data is
* exported. * The text document is set as a source document for exporter * created. New document zoom is set as one of the 'View' settings. This made * for checking if this setting is successfully exported within * the document settings. * Object relations created : *
'MediaDescriptor'
for
* {@link ifc.document._XFilter} interface 'XFilter.Checker'
for
* {@link ifc.document._XFilter} interface 'SourceDocument'
for
* {@link ifc.document._XExporter} interface XFilter
interface test. All
* the information about errors occurred in XML data is written
* to log specified.
* @see ifc.document._XFilter
*/
private class SettingsFilterChecker extends XMLTools.XMLChecker
implements ifc.document._XFilter.FilterChecker {
/**
* Creates a class which will write information
* into log specified.
*/
private SettingsFilterChecker(PrintWriter log) {
super(log, false) ;
}
/**
* _XFilter.FilterChecker
interface method
* which returns the result of XML checking.
* @return true
if the XML data exported was
* valid (i.e. all necessary tags and character data exists),
* false
if some errors occurred.
*/
public boolean checkFilter() {
return check();
}
}
}