ColorProfileServiceHolder.java 902 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.colorprofile;

import com.adobe.colorprofile.ColorProfileService;
import com.adobe.colorprofile.ColorProfileServiceHelper;
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 ColorProfileServiceHolder
implements Streamable {
    public ColorProfileService value;

    public ColorProfileServiceHolder() {
    }

    public ColorProfileServiceHolder(ColorProfileService initial) {
        this.value = initial;
    }

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

    public void _read(InputStream in) {
        this.value = ColorProfileServiceHelper.read(in);
    }

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