org.milyn.edi.unedifact.d94b.DOCADV.SegmentGroup11 Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d94b.DOCADV;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d94b.common.AgreementIdentification;
import org.milyn.edi.unedifact.d94b.common.MonetaryAmount;
import org.milyn.edi.unedifact.d94b.common.PercentageDetails;
import org.milyn.edi.unedifact.d94b.common.PlaceLocationIdentification;
import org.milyn.edi.unedifact.d94b.common.FreeText;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
public class SegmentGroup11 implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private AgreementIdentification agreementIdentification;
private MonetaryAmount monetaryAmount;
private PercentageDetails percentageDetails;
private PlaceLocationIdentification placeLocationIdentification;
private FreeText freeText;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = writer;
if(agreementIdentification != null) {
nodeWriter.write("AGR");
nodeWriter.write(delimiters.getField());
agreementIdentification.write(nodeWriter, delimiters);
}
if(monetaryAmount != null) {
nodeWriter.write("MOA");
nodeWriter.write(delimiters.getField());
monetaryAmount.write(nodeWriter, delimiters);
}
if(percentageDetails != null) {
nodeWriter.write("PCD");
nodeWriter.write(delimiters.getField());
percentageDetails.write(nodeWriter, delimiters);
}
if(placeLocationIdentification != null) {
nodeWriter.write("LOC");
nodeWriter.write(delimiters.getField());
placeLocationIdentification.write(nodeWriter, delimiters);
}
if(freeText != null) {
nodeWriter.write("FTX");
nodeWriter.write(delimiters.getField());
freeText.write(nodeWriter, delimiters);
}
}
public AgreementIdentification getAgreementIdentification() {
return agreementIdentification;
}
public SegmentGroup11 setAgreementIdentification(AgreementIdentification agreementIdentification) {
this.agreementIdentification = agreementIdentification; return this;
}
public MonetaryAmount getMonetaryAmount() {
return monetaryAmount;
}
public SegmentGroup11 setMonetaryAmount(MonetaryAmount monetaryAmount) {
this.monetaryAmount = monetaryAmount; return this;
}
public PercentageDetails getPercentageDetails() {
return percentageDetails;
}
public SegmentGroup11 setPercentageDetails(PercentageDetails percentageDetails) {
this.percentageDetails = percentageDetails; return this;
}
public PlaceLocationIdentification getPlaceLocationIdentification() {
return placeLocationIdentification;
}
public SegmentGroup11 setPlaceLocationIdentification(PlaceLocationIdentification placeLocationIdentification) {
this.placeLocationIdentification = placeLocationIdentification; return this;
}
public FreeText getFreeText() {
return freeText;
}
public SegmentGroup11 setFreeText(FreeText freeText) {
this.freeText = freeText; return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy