/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
package mod._sw;
import java.io.PrintWriter;
import lib.StatusException;
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 occured in XML data is written
* to log specified.
* @see ifc.document._XFilter
*/
protected class SettingsFilterChecker extends XMLTools.XMLChecker
implements ifc.document._XFilter.FilterChecker {
/**
* Creates a class which will write information
* into log specified.
*/
public 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 occured.
*/
public boolean checkFilter() {
return check();
}
}
}