Few more
[apertium.git] / trunk / crossdics / src / dictools / DicGather.java
blob7a1033527c3976f1bced59c3ed4e47c0f308b60f
1 /*
2 * Copyright (C) 2007 Universitat d'Alacant / Universidad de Alicante
3 * Author: Enrique Benimeli Bofarull
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 * 02111-1307, USA.
21 package dictools;
23 import dics.elements.dtd.DictionaryElement;
25 /**
27 * @author Enrique Benimeli Bofarull
30 public class DicGather {
32 /**
35 private String dic;
37 /**
40 private String out;
42 /**
44 * @param dic
45 * @param out
47 public DicGather(final String dic, final String out) {
48 this.dic = dic;
49 this.out = out;
52 /**
56 public final void doGather() {
57 DictionaryReader reader = new DictionaryReader(dic);
58 DictionaryElement dic = reader.readDic();
59 dic.printXML(out);
61 System.out.println("Dictionary in a single file: '" + out + "'");