org.milyn.edi.unedifact.d02b.PROTAP.SegmentGroup7 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d02b.PROTAP;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d02b.common.IndexDetails;
import org.milyn.edi.unedifact.d02b.common.StructureIdentification;
import org.milyn.edi.unedifact.d02b.common.ItemDescription;
import org.milyn.edi.unedifact.d02b.common.RequirementsAndConditions;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup7 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private IndexDetails indexDetails;
private StructureIdentification structureIdentification;
private ItemDescription itemDescription;
private RequirementsAndConditions requirementsAndConditions;
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(structureIdentification != null) {
nodeWriter.write("BII");
nodeWriter.write(delimiters.getField());
structureIdentification.write(nodeWriter, delimiters);
}
if(itemDescription != null) {
nodeWriter.write("IMD");
nodeWriter.write(delimiters.getField());
itemDescription.write(nodeWriter, delimiters);
}
if(requirementsAndConditions != null) {
nodeWriter.write("RCS");
nodeWriter.write(delimiters.getField());
requirementsAndConditions.write(nodeWriter, delimiters);
}
}
public IndexDetails getIndexDetails() {
return indexDetails;
}
public SegmentGroup7 setIndexDetails(IndexDetails indexDetails) {
this.indexDetails = indexDetails; return this;
}
public StructureIdentification getStructureIdentification() {
return structureIdentification;
}
public SegmentGroup7 setStructureIdentification(StructureIdentification structureIdentification) {
this.structureIdentification = structureIdentification; return this;
}
public ItemDescription getItemDescription() {
return itemDescription;
}
public SegmentGroup7 setItemDescription(ItemDescription itemDescription) {
this.itemDescription = itemDescription; return this;
}
public RequirementsAndConditions getRequirementsAndConditions() {
return requirementsAndConditions;
}
public SegmentGroup7 setRequirementsAndConditions(RequirementsAndConditions requirementsAndConditions) {
this.requirementsAndConditions = requirementsAndConditions; return this;
}
}