XMLFMCallBackHolder.java
851 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.xmlformcallback;
import com.adobe.xmlformcallback.XMLFMCallBack;
import com.adobe.xmlformcallback.XMLFMCallBackHelper;
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 XMLFMCallBackHolder
implements Streamable {
public XMLFMCallBack value;
public XMLFMCallBackHolder() {
}
public XMLFMCallBackHolder(XMLFMCallBack initial) {
this.value = initial;
}
public TypeCode _type() {
return XMLFMCallBackHelper.type();
}
public void _read(InputStream in) {
this.value = XMLFMCallBackHelper.read(in);
}
public void _write(OutputStream _out) {
XMLFMCallBackHelper.write(_out, this.value);
}
}