AvailableColorProfilesHolder.java 904 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.colorprofile;

import com.adobe.colorprofile.AvailableColorProfilesHelper;
import com.adobe.colorprofile.ProfilesInfo;
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 AvailableColorProfilesHolder
implements Streamable {
    public ProfilesInfo[] value;

    public AvailableColorProfilesHolder() {
    }

    public AvailableColorProfilesHolder(ProfilesInfo[] initial) {
        this.value = initial;
    }

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

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

    public void _write(OutputStream out) {
        AvailableColorProfilesHelper.write(out, this.value);
    }
}