WSTemplateAliasesHolder.java 896 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.document.xmlform;

import com.adobe.document.xmlform.WSTemplateAliases;
import com.adobe.document.xmlform.WSTemplateAliasesHelper;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.InputStream;
import org.omg.CORBA.portable.OutputStream;
import org.omg.CORBA.portable.Streamable;

public final class WSTemplateAliasesHolder
implements Streamable {
    public WSTemplateAliases value;

    public WSTemplateAliasesHolder() {
    }

    public WSTemplateAliasesHolder(WSTemplateAliases initial) {
        this.value = initial;
    }

    public TypeCode _type() {
        return WSTemplateAliasesHelper.type();
    }

    public void _read(InputStream _in) {
        this.value = WSTemplateAliasesHelper.read(_in);
    }

    public void _write(OutputStream _out) {
        WSTemplateAliasesHelper.write(_out, this.value);
    }
}