InlinedDataBufferHolder.java 869 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service;

import com.adobe.service.InlinedDataBuffer;
import com.adobe.service.InlinedDataBufferHelper;
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 InlinedDataBufferHolder
implements Streamable {
    public InlinedDataBuffer value;

    public InlinedDataBufferHolder() {
    }

    public InlinedDataBufferHolder(InlinedDataBuffer initial) {
        this.value = initial;
    }

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

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

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