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