CSFInfoHolder.java 784 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.colorprofile;

import com.adobe.colorprofile.CSFInfo;
import com.adobe.colorprofile.CSFInfoHelper;
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 CSFInfoHolder
implements Streamable {
    public CSFInfo value;

    public CSFInfoHolder() {
    }

    public CSFInfoHolder(CSFInfo initial) {
        this.value = initial;
    }

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

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

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