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

org.milyn.edi.unedifact.d03b.LEDGER.SegmentGroup7 Maven / Gradle / Ivy

There is a newer version: 1.7.1.0
Show newest version
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d03b.LEDGER;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d03b.common.CharacteristicClassId;    
import org.milyn.edi.unedifact.d03b.common.CharacteristicValue;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup7 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private CharacteristicClassId characteristicClassId;
    private CharacteristicValue characteristicValue;

    public void write(Writer writer, Delimiters delimiters) throws IOException {
        
        Writer nodeWriter = writer;

        if(characteristicClassId != null) {
            nodeWriter.write("CCI");
            nodeWriter.write(delimiters.getField());
            characteristicClassId.write(nodeWriter, delimiters);
        }
        if(characteristicValue != null) {
            nodeWriter.write("CAV");
            nodeWriter.write(delimiters.getField());
            characteristicValue.write(nodeWriter, delimiters);
        }
    }

    public CharacteristicClassId getCharacteristicClassId() {
        return characteristicClassId;
    }

    public SegmentGroup7 setCharacteristicClassId(CharacteristicClassId characteristicClassId) {
        this.characteristicClassId = characteristicClassId;  return this;
    }

    public CharacteristicValue getCharacteristicValue() {
        return characteristicValue;
    }

    public SegmentGroup7 setCharacteristicValue(CharacteristicValue characteristicValue) {
        this.characteristicValue = characteristicValue;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy