org.milyn.edi.unedifact.d06b.common.ItemDescription Maven / Gradle / Ivy
/**
* This class was generated by Smooks EJC (http://www.smooks.org).
*/
package org.milyn.edi.unedifact.d06b.common;
import java.io.Serializable;
import org.milyn.smooks.edi.EDIWritable;
import org.milyn.edi.unedifact.d06b.common.field.ItemCharacteristicC272;
import org.milyn.edi.unedifact.d06b.common.field.ItemDescriptionC273;
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 ItemDescription implements Serializable, EDIWritable {
private static final long serialVersionUID = 1L;
private String descriptionFormatCode;
private ItemCharacteristicC272 itemCharacteristic;
private ItemDescriptionC273 itemDescription;
private String surfaceOrLayerCode;
public void write(Writer writer, Delimiters delimiters) throws IOException {
Writer nodeWriter = new StringWriter();
List nodeTokens = new ArrayList();
if(descriptionFormatCode != null) {
nodeWriter.write(delimiters.escape(descriptionFormatCode.toString()));
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(itemCharacteristic != null) {
itemCharacteristic.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(itemDescription != null) {
itemDescription.write(nodeWriter, delimiters);
nodeTokens.add(nodeWriter.toString());
((StringWriter)nodeWriter).getBuffer().setLength(0);
}
nodeWriter.write(delimiters.getField());
if(surfaceOrLayerCode != null) {
nodeWriter.write(delimiters.escape(surfaceOrLayerCode.toString()));
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 String getDescriptionFormatCode() {
return descriptionFormatCode;
}
public ItemDescription setDescriptionFormatCode(String descriptionFormatCode) {
this.descriptionFormatCode = descriptionFormatCode; return this;
}
public ItemCharacteristicC272 getItemCharacteristic() {
return itemCharacteristic;
}
public ItemDescription setItemCharacteristic(ItemCharacteristicC272 itemCharacteristic) {
this.itemCharacteristic = itemCharacteristic; return this;
}
public ItemDescriptionC273 getItemDescription() {
return itemDescription;
}
public ItemDescription setItemDescription(ItemDescriptionC273 itemDescription) {
this.itemDescription = itemDescription; return this;
}
public String getSurfaceOrLayerCode() {
return surfaceOrLayerCode;
}
public ItemDescription setSurfaceOrLayerCode(String surfaceOrLayerCode) {
this.surfaceOrLayerCode = surfaceOrLayerCode; return this;
}
}