All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.milyn.edi.unedifact.d13a.common.INDIndexDetails Maven / Gradle / Ivy

The newest version!
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d13a.common;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d13a.common.field.C545IndexIdentification;    
import org.milyn.edi.unedifact.d13a.common.field.C546IndexValue;    
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 INDIndexDetails implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private C545IndexIdentification c545IndexIdentification;
    private C546IndexValue c546IndexValue;

    public void write(Writer writer, Delimiters delimiters) throws IOException {
        
        Writer nodeWriter = new StringWriter();

        List nodeTokens = new ArrayList();

        if(c545IndexIdentification != null) {
            c545IndexIdentification.write(nodeWriter, delimiters);
            nodeTokens.add(nodeWriter.toString());
            ((StringWriter)nodeWriter).getBuffer().setLength(0);
        }
        nodeWriter.write(delimiters.getField());
        if(c546IndexValue != null) {
            c546IndexValue.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 C545IndexIdentification getC545IndexIdentification() {
        return c545IndexIdentification;
    }

    public INDIndexDetails setC545IndexIdentification(C545IndexIdentification c545IndexIdentification) {
        this.c545IndexIdentification = c545IndexIdentification;  return this;
    }

    public C546IndexValue getC546IndexValue() {
        return c546IndexValue;
    }

    public INDIndexDetails setC546IndexValue(C546IndexValue c546IndexValue) {
        this.c546IndexValue = c546IndexValue;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy