1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
/*
* Braille Utils (C) 2010-2011 Daisy Consortium
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* 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
*/
package com_braillo;
import java.util.Collection;
import java.util.HashMap;
import org.daisy.braille.embosser.Embosser;
import org.daisy.braille.embosser.EmbosserProvider;
public class BrailloEmbosserProvider implements EmbosserProvider {
public static enum EmbosserType {
BRAILLO_200,
BRAILLO_200_FW_11,
BRAILLO_270,
BRAILLO_400_S,
BRAILLO_400_SR,
BRAILLO_440_SW,
BRAILLO_440_SWSF
};
private final HashMap<EmbosserType, Embosser> embossers;
public BrailloEmbosserProvider() {
embossers = new HashMap<EmbosserType, Embosser>();
embossers.put(EmbosserType.BRAILLO_200, new Braillo200Embosser("Braillo 200", "Firmware 000.17 or later. Embosser table must match hardware setup."));
embossers.put(EmbosserType.BRAILLO_200_FW_11, new Braillo200_270_400_v1_11Embosser("Braillo 200/270/400 FW 1-11", "Firmware 11 and older. Embosser must be set to interpoint embossing. Table must match hardware setup."));
embossers.put(EmbosserType.BRAILLO_270, new Braillo200_270_400_v12_16Embosser("Braillo 200/270/400 FW 12-16", "Firmware 12 to 16. Embosser table must match hardware setup."));
embossers.put(EmbosserType.BRAILLO_400_S, new Braillo400SEmbosser("Braillo 400S", "Firmware 000.17 or later. Embosser table must match hardware setup."));
embossers.put(EmbosserType.BRAILLO_400_SR, new Braillo400SREmbosser("Braillo 400SR", "Firmware 000.17 or later. Embosser table must match hardware setup."));
embossers.put(EmbosserType.BRAILLO_440_SW, new Braillo440SWEmbosser("Braillo 440SW", "Embosser table must match hardware setup."));
embossers.put(EmbosserType.BRAILLO_440_SWSF, new Braillo440SFEmbosser("Braillo 440SWSF", "Embosser table must match hardware setup."));
}
//jvm1.6@Override
public Collection<Embosser> list() {
return embossers.values();
}
}
|