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