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