org.milyn.edi.unedifact.d07a.common.RJLAccountingJournalIdentification Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d07a.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d07a.common.field.C595AccountingJournalIdentification;
import org.milyn.edi.unedifact.d07a.common.field.C596AccountingEntryTypeDetails;
import java.io.Writer;
import org.milyn.edisax.model.internal.Delimiters;
import java.io.IOException;
import java.io.StringWriter;
import java.util.List;
import java.util.ArrayList;
import org.milyn.edisax.util.EDIUtils;
import org.milyn.edisax.model.internal.DelimiterType;
public class RJLAccountingJournalIdentification implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private C595AccountingJournalIdentification c595AccountingJournalIdentification;
private C596AccountingEntryTypeDetails c596AccountingEntryTypeDetails;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(c595AccountingJournalIdentification != null) {
c595AccountingJournalIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(c596AccountingEntryTypeDetails != null) {
c596AccountingEntryTypeDetails.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeTokens.add(nodeWriter.toString());
writer.write(EDIUtils.concatAndTruncate(nodeTokens, DelimiterType.FIELD, delimiters));
writer.write(delimiters.getSegmentDelimiter());
writer.flush();
}
public C595AccountingJournalIdentification getC595AccountingJournalIdentification() {
return c595AccountingJournalIdentification;
}
public RJLAccountingJournalIdentification setC595AccountingJournalIdentification(C595AccountingJournalIdentification c595AccountingJournalIdentification) {
this.c595AccountingJournalIdentification = c595AccountingJournalIdentification; return this;
}
public C596AccountingEntryTypeDetails getC596AccountingEntryTypeDetails() {
return c596AccountingEntryTypeDetails;
}
public RJLAccountingJournalIdentification setC596AccountingEntryTypeDetails(C596AccountingEntryTypeDetails c596AccountingEntryTypeDetails) {
this.c596AccountingEntryTypeDetails = c596AccountingEntryTypeDetails; return this;
}
}