org.milyn.edi.unedifact.d94a.common.IndexDetails Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d94a.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d94a.common.field.IndexIdentificationC545;
import org.milyn.edi.unedifact.d94a.common.field.IndexValueC546;
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 IndexDetails implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private IndexIdentificationC545 indexIdentification;
private IndexValueC546 indexValue;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(indexIdentification != null) {
indexIdentification.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(indexValue != null) {
indexValue.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 IndexIdentificationC545 getIndexIdentification() {
return indexIdentification;
}
public IndexDetails setIndexIdentification(IndexIdentificationC545 indexIdentification) {
this.indexIdentification = indexIdentification; return this;
}
public IndexValueC546 getIndexValue() {
return indexValue;
}
public IndexDetails setIndexValue(IndexValueC546 indexValue) {
this.indexValue = indexValue; return this;
}
}