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