All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gdv.xport.satz.model.Satz250 Maven / Gradle / Ivy

Go to download

gdv-xport-lib ist die Java-Bibliothek fuer den Umgang mit dem GDV-Format. Sie erleichtert den Export und Export dieses Datenformats.

There is a newer version: 7.2.2
Show newest version
/*
 * 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy