ProfilesInfoHolder.java
834 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.colorprofile;
import com.adobe.colorprofile.ProfilesInfo;
import com.adobe.colorprofile.ProfilesInfoHelper;
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 ProfilesInfoHolder
implements Streamable {
public ProfilesInfo value;
public ProfilesInfoHolder() {
}
public ProfilesInfoHolder(ProfilesInfo initial) {
this.value = initial;
}
public TypeCode _type() {
return ProfilesInfoHelper.type();
}
public void _read(InputStream _in) {
this.value = ProfilesInfoHelper.read(_in);
}
public void _write(OutputStream _out) {
ProfilesInfoHelper.write(_out, this.value);
}
}