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

import com.adobe.document.xmlform.OutOfMemoryException;
import com.adobe.document.xmlform.OutOfMemoryExceptionHelper;
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 OutOfMemoryExceptionHolder
implements Streamable {
    public OutOfMemoryException value;

    public OutOfMemoryExceptionHolder() {
    }

    public OutOfMemoryExceptionHolder(OutOfMemoryException initial) {
        this.value = initial;
    }

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

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

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