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

org.milyn.edi.unedifact.d95b.DIRDEF.SegmentGroup6 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.d95b.DIRDEF;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d95b.common.SEGSegmentIdentification;    
import java.util.List;    
import org.milyn.edi.unedifact.d95b.common.FTXFreeText;    
import org.milyn.edi.unedifact.d95b.common.ELUDataElementUsageDetails;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup6 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private SEGSegmentIdentification sEGSegmentIdentification;
    private List fTXFreeText;
    private List eLUDataElementUsageDetails;

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

        if(sEGSegmentIdentification != null) {
            nodeWriter.write("SEG");
            nodeWriter.write(delimiters.getField());
            sEGSegmentIdentification.write(nodeWriter, delimiters);
        }
        if(fTXFreeText != null && !fTXFreeText.isEmpty()) {
            for(FTXFreeText fTXFreeTextInst : fTXFreeText) {
                nodeWriter.write("FTX");
                nodeWriter.write(delimiters.getField());
                fTXFreeTextInst.write(nodeWriter, delimiters);
            }
        }
        if(eLUDataElementUsageDetails != null && !eLUDataElementUsageDetails.isEmpty()) {
            for(ELUDataElementUsageDetails eLUDataElementUsageDetailsInst : eLUDataElementUsageDetails) {
                nodeWriter.write("ELU");
                nodeWriter.write(delimiters.getField());
                eLUDataElementUsageDetailsInst.write(nodeWriter, delimiters);
            }
        }
    }

    public SEGSegmentIdentification getSEGSegmentIdentification() {
        return sEGSegmentIdentification;
    }

    public SegmentGroup6 setSEGSegmentIdentification(SEGSegmentIdentification sEGSegmentIdentification) {
        this.sEGSegmentIdentification = sEGSegmentIdentification;  return this;
    }

    public List getFTXFreeText() {
        return fTXFreeText;
    }

    public SegmentGroup6 setFTXFreeText(List fTXFreeText) {
        this.fTXFreeText = fTXFreeText;  return this;
    }

    public List getELUDataElementUsageDetails() {
        return eLUDataElementUsageDetails;
    }

    public SegmentGroup6 setELUDataElementUsageDetails(List eLUDataElementUsageDetails) {
        this.eLUDataElementUsageDetails = eLUDataElementUsageDetails;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy