ProfileFileNamesHolder.java
806 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.colorprofile;
import com.adobe.colorprofile.ProfileFileNamesHelper;
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 ProfileFileNamesHolder
implements Streamable {
public String[] value;
public ProfileFileNamesHolder() {
}
public ProfileFileNamesHolder(String[] initial) {
this.value = initial;
}
public TypeCode _type() {
return ProfileFileNamesHelper.type();
}
public void _read(InputStream in) {
this.value = ProfileFileNamesHelper.read(in);
}
public void _write(OutputStream out) {
ProfileFileNamesHelper.write(out, this.value);
}
}