blob: 4f57c0232a6e2ab7f22834713653d3be7537ac97 [file] [log] [blame]
/**************************************************************
*
* 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 com.sun.star.filter.config.tools.split;
//_______________________________________________
import java.lang.*;
import java.io.*;
import com.sun.star.filter.config.tools.utils.*;
//_______________________________________________
/**
* Data container for class Splitter.
*
*
*/
public class SplitterData
{
/** can be used to generate some debug output. */
public Logger m_aDebug;
/** contains all configuration structures, for which the xml
fragments should be generated. */
public Cache m_aCache;
/** specify the output xml format. */
public int m_nFormat;
/** specify the encoding for the output xml files. */
public java.lang.String m_sEncoding;
/** directory to generate some generic views. */
public java.io.File m_aOutDir;
/** directories to generate all xml fragments there.
* Must be relative to "m_aOutDir"! */
public java.io.File m_aFragmentDirTypes;
public java.io.File m_aFragmentDirFilters;
public java.io.File m_aFragmentDirDetectServices;
public java.io.File m_aFragmentDirFrameLoaders;
public java.io.File m_aFragmentDirContentHandlers;
/** enable/disable grouping of filters by its application modules. */
public boolean m_bSeperateFiltersByModule;
/** directories to group all filter fragments ... if requested.
* Must be relative to "m_aOutDir/m_aFragmentDirFilters" and
* will be used only, if "m_bSeperateFiltersByModule" is set to true. */
public java.io.File m_aFragmentDirModuleSWriter;
public java.io.File m_aFragmentDirModuleSWeb;
public java.io.File m_aFragmentDirModuleSGlobal;
public java.io.File m_aFragmentDirModuleSCalc;
public java.io.File m_aFragmentDirModuleSDraw;
public java.io.File m_aFragmentDirModuleSImpress;
public java.io.File m_aFragmentDirModuleSMath;
public java.io.File m_aFragmentDirModuleSChart;
public java.io.File m_aFragmentDirModuleOthers;
/** file extension for generated xml fragments. */
public java.lang.String m_sFragmentExtension;
}