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

org.milyn.edi.unedifact.d05a.CUSEXP.SegmentGroup9 Maven / Gradle / Ivy

There is a newer version: 1.7.1.0
Show newest version
/**
 * This class was generated by Smooks EJC (http://www.smooks.org).
 */
package org.milyn.edi.unedifact.d05a.CUSEXP;

import java.io.Serializable;    
import org.milyn.smooks.edi.EDIWritable;    
import org.milyn.edi.unedifact.d05a.common.Package;    
import org.milyn.edi.unedifact.d05a.common.PackageIdentification;    
import java.io.Writer;    
import org.milyn.edisax.model.internal.Delimiters;    
import java.io.IOException;    

public class SegmentGroup9 implements Serializable, EDIWritable {

    private static final long serialVersionUID = 1L;

    private Package _package;
    private PackageIdentification packageIdentification;

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

        if(_package != null) {
            nodeWriter.write("PAC");
            nodeWriter.write(delimiters.getField());
            _package.write(nodeWriter, delimiters);
        }
        if(packageIdentification != null) {
            nodeWriter.write("PCI");
            nodeWriter.write(delimiters.getField());
            packageIdentification.write(nodeWriter, delimiters);
        }
    }

    public Package get_package() {
        return _package;
    }

    public SegmentGroup9 set_package(Package _package) {
        this._package = _package;  return this;
    }

    public PackageIdentification getPackageIdentification() {
        return packageIdentification;
    }

    public SegmentGroup9 setPackageIdentification(PackageIdentification packageIdentification) {
        this.packageIdentification = packageIdentification;  return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy