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