org.milyn.edi.unedifact.d03b.REQOTE.SegmentGroup52 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d03b.REQOTE;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d03b.common.TransportInformation;
import java.util.List;
import org.milyn.edi.unedifact.d03b.common.Quantity;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup52 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private TransportInformation transportInformation;
private List quantity;
private List segmentGroup53;
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(quantity != null && !quantity.isEmpty()) {
for(Quantity quantityInst : quantity) {
nodeWriter.write("QTY");
nodeWriter.write(delimiters.getField());
quantityInst.write(nodeWriter, delimiters);
}
}
if(segmentGroup53 != null && !segmentGroup53.isEmpty()) {
for(SegmentGroup53 segmentGroup53Inst : segmentGroup53) {
segmentGroup53Inst.write(nodeWriter, delimiters);
}
}
}
public TransportInformation getTransportInformation() {
return transportInformation;
}
public SegmentGroup52 setTransportInformation(TransportInformation transportInformation) {
this.transportInformation = transportInformation; return this;
}
public List getQuantity() {
return quantity;
}
public SegmentGroup52 setQuantity(List quantity) {
this.quantity = quantity; return this;
}
public List getSegmentGroup53() {
return segmentGroup53;
}
public SegmentGroup52 setSegmentGroup53(List segmentGroup53) {
this.segmentGroup53 = segmentGroup53; return this;
}
}