/************************************************************************ * * Converter.java * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * Copyright: 2001-2010 by Henrik Just * * All Rights Reserved. * * version 1.2 (2010-03-28) * */ package writer2latex.bibtex; import writer2latex.api.Config; //import writer2latex.api.ConverterResult; import writer2latex.base.ConverterBase; import writer2latex.latex.LaTeXConfig; import writer2latex.office.BibMark; import writer2latex.office.XMLString; import writer2latex.util.Misc; //import writer2latex.xmerge.ConvertData; //import writer2latex.xmerge.OfficeDocument; import java.io.IOException; import org.w3c.dom.Element; import org.w3c.dom.NodeList; /** *
BibTeX export
* *This class extracts bibliographic information from an OpenDocument text file to a BibTeX data file.
* */ public final class Converter extends ConverterBase { // Configuration - TODO: Doesn't really use it - should use some fake config private LaTeXConfig config; public Config getConfig() { return config; } // Constructor public Converter() { super(); config = new LaTeXConfig(); } /** *Convert the data passed into the InputStream
* into BibTeX format.