gdv.xport.satz.model.Satz250 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdv-xport-lib Show documentation
Show all versions of gdv-xport-lib Show documentation
gdv-xport-lib ist die Java-Bibliothek fuer den Umgang mit dem GDV-Format.
Sie erleichtert den Export und Export dieses Datenformats.
/*
* Copyright (c) 2018 by Oliver Boehm
*
* Licensed 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.
*
* (c)reated 17.04.2018 by oboehm ([email protected])
*/
package gdv.xport.satz.model;
import gdv.xport.feld.Bezeichner;
import gdv.xport.feld.NumFeld;
import gdv.xport.feld.Zeichen;
import gdv.xport.satz.xml.SatzXml;
import gdv.xport.satz.xml.XmlService;
import gdv.xport.util.SatzTyp;
/**
* Die Klasse Satz250 hat als Besonderheit, dass die Satznummer nicht am Ende
* auf Adresse 256 steht, sondern mittendrin auf Adresse 51. Deswegen muessen
* wir den Satz, den wir ums vom {@link XmlService} holen, noch anpassen.
*
* TODO: Wird ab v6 nach gdv-xport-deprecated verschoben.
*
*
* @author oboehm
* @since 3.2 (17.04.2018)
* @deprecated Sonderfall wird jetzt in SatzXml beruecksichtigt
*/
@Deprecated
public class Satz250 extends SatzXml {
/**
* Instantiiert einen allgemeinen Datensatz fuer die Satzart 250. Diese
* Satzart gibt es nur fuer die Sparte 190 (Transport).
*/
public Satz250() {
super(setUpSatzart250());
}
private static SatzXml setUpSatzart250() {
SatzXml satz = XmlService.getInstance().getSatzart(SatzTyp.of("0250.190"));
satz.setSatznummer(new Zeichen(Bezeichner.SATZNUMMER, 51));
satz.getTeildatensatz(2).add(new NumFeld(Bezeichner.of("Praemie in Waehrungseinheiten 2"), 12, 124).mitNachkommastellen(2));
return satz;
}
}