org.milyn.edi.unedifact.d03b.ORDERS.SegmentGroup49 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d03b.ORDERS;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d03b.common.TransportInformation;
import java.util.List;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup49 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private TransportInformation transportInformation;
private List segmentGroup50;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(transportInformation != null) {
nodeWriter.write("TDT");
nodeWriter.write(delimiters.getField());
transportInformation.write(nodeWriter, delimiters);
}
if(segmentGroup50 != null && !segmentGroup50.isEmpty()) {
for(SegmentGroup50 segmentGroup50Inst : segmentGroup50) {
segmentGroup50Inst.write(nodeWriter, delimiters);
}
}
}
public TransportInformation getTransportInformation() {
return transportInformation;
}
public SegmentGroup49 setTransportInformation(TransportInformation transportInformation) {
this.transportInformation = transportInformation; return this;
}
public List getSegmentGroup50() {
return segmentGroup50;
}
public SegmentGroup49 setSegmentGroup50(List segmentGroup50) {
this.segmentGroup50 = segmentGroup50; return this;
}
}