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

org.milyn.edi.unedifact.d16a.ENTREC.SegmentGroup5 Maven / Gradle / Ivy

The newest version!
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d16a.ENTREC;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d16a.common.RJLAccountingJournalIdentification;    
import java.util.List;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup5 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private RJLAccountingJournalIdentification rJLAccountingJournalIdentification;
    private SegmentGroup6 segmentGroup6;
    private List segmentGroup7;

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

        if(rJLAccountingJournalIdentification != null) {
            nodeWriter.write("RJL");
            nodeWriter.write(delimiters.getField());
            rJLAccountingJournalIdentification.write(nodeWriter, delimiters);
        }
        if(segmentGroup6 != null) {
            segmentGroup6.write(nodeWriter, delimiters);
        }
        if(segmentGroup7 != null && !segmentGroup7.isEmpty()) {
            for(SegmentGroup7 segmentGroup7Inst : segmentGroup7) {
                segmentGroup7Inst.write(nodeWriter, delimiters);
            }
        }
    }

    public RJLAccountingJournalIdentification getRJLAccountingJournalIdentification() {
        return rJLAccountingJournalIdentification;
    }

    public SegmentGroup5 setRJLAccountingJournalIdentification(RJLAccountingJournalIdentification rJLAccountingJournalIdentification) {
        this.rJLAccountingJournalIdentification = rJLAccountingJournalIdentification;  return this;
    }

    public SegmentGroup6 getSegmentGroup6() {
        return segmentGroup6;
    }

    public SegmentGroup5 setSegmentGroup6(SegmentGroup6 segmentGroup6) {
        this.segmentGroup6 = segmentGroup6;  return this;
    }

    public List getSegmentGroup7() {
        return segmentGroup7;
    }

    public SegmentGroup5 setSegmentGroup7(List segmentGroup7) {
        this.segmentGroup7 = segmentGroup7;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy