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

import com.adobe.document.xmlform.RenderInput;
import com.adobe.document.xmlform.RenderInputHelper;
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 RenderInputHolder
implements Streamable {
    public RenderInput value;

    public RenderInputHolder() {
    }

    public RenderInputHolder(RenderInput initial) {
        this.value = initial;
    }

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

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

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