ErrorMsgArrayHolder.java 800 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.native2pdf.bmc;

import com.adobe.native2pdf.bmc.ErrorMsgArrayHelper;
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 ErrorMsgArrayHolder
implements Streamable {
    public String[] value = null;

    public ErrorMsgArrayHolder() {
    }

    public ErrorMsgArrayHolder(String[] initialValue) {
        this.value = initialValue;
    }

    public void _read(InputStream i) {
        this.value = ErrorMsgArrayHelper.read(i);
    }

    public void _write(OutputStream o) {
        ErrorMsgArrayHelper.write(o, this.value);
    }

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