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