org.milyn.edi.unedifact.d99b.CONTEN.SegmentGroup1 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d99b.CONTEN;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d99b.common.IndexDetails;
import org.milyn.edi.unedifact.d99b.common.RequirementsAndConditions;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup1 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private IndexDetails indexDetails;
private RequirementsAndConditions requirementsAndConditions;
private SegmentGroup2 segmentGroup2;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(indexDetails != null) {
nodeWriter.write("IND");
nodeWriter.write(delimiters.getField());
indexDetails.write(nodeWriter, delimiters);
}
if(requirementsAndConditions != null) {
nodeWriter.write("RCS");
nodeWriter.write(delimiters.getField());
requirementsAndConditions.write(nodeWriter, delimiters);
}
if(segmentGroup2 != null) {
segmentGroup2.write(nodeWriter, delimiters);
}
}
public IndexDetails getIndexDetails() {
return indexDetails;
}
public SegmentGroup1 setIndexDetails(IndexDetails indexDetails) {
this.indexDetails = indexDetails; return this;
}
public RequirementsAndConditions getRequirementsAndConditions() {
return requirementsAndConditions;
}
public SegmentGroup1 setRequirementsAndConditions(RequirementsAndConditions requirementsAndConditions) {
this.requirementsAndConditions = requirementsAndConditions; return this;
}
public SegmentGroup2 getSegmentGroup2() {
return segmentGroup2;
}
public SegmentGroup1 setSegmentGroup2(SegmentGroup2 segmentGroup2) {
this.segmentGroup2 = segmentGroup2; return this;
}
}