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