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