
git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@272 f0f2a975-2e09-46c8-9428-3b39399b9f3c
67 lines
No EOL
1.9 KiB
Java
67 lines
No EOL
1.9 KiB
Java
/************************************************************************
|
|
*
|
|
* Converter.java
|
|
*
|
|
* Copyright: 2001-2015 by Henrik Just
|
|
*
|
|
* This file is part of Writer2LaTeX.
|
|
*
|
|
* Writer2LaTeX is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Writer2LaTeX 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with Writer2LaTeX. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Version 1.6 (2015-06-22)
|
|
*
|
|
*/
|
|
|
|
package writer2latex.bibtex;
|
|
|
|
import writer2latex.api.Config;
|
|
import writer2latex.base.ConverterBase;
|
|
import writer2latex.latex.LaTeXConfig;
|
|
import writer2latex.util.Misc;
|
|
|
|
import java.io.IOException;
|
|
|
|
/** This class exports bibliographic information from an OpenDocument text file to a BibTeX data file
|
|
*/
|
|
public final class Converter extends ConverterBase {
|
|
|
|
// Implement converter API
|
|
|
|
// TODO: Doesn't really use the configuration - should use some fake config
|
|
private LaTeXConfig config;
|
|
|
|
public Converter() {
|
|
super();
|
|
config = new LaTeXConfig();
|
|
}
|
|
|
|
public Config getConfig() {
|
|
return config;
|
|
}
|
|
|
|
// Extend converter base
|
|
|
|
/** Convert the document into BibTeX format.</p>
|
|
*
|
|
* @throws IOException If any I/O error occurs.
|
|
*/
|
|
@Override public void convertInner() throws IOException {
|
|
sTargetFileName = Misc.trimDocumentName(sTargetFileName,".bib");
|
|
|
|
BibTeXDocument bibDoc = new BibTeXDocument(sTargetFileName,true,ofr);
|
|
|
|
converterResult.addDocument(bibDoc);
|
|
}
|
|
|
|
} |