CategoryTableSeqHolder.java 910 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service.ControlAgentPackage;

import com.adobe.service.ControlAgentPackage.CategoryTable;
import com.adobe.service.ControlAgentPackage.CategoryTableSeqHelper;
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 CategoryTableSeqHolder
implements Streamable {
    public CategoryTable[] value;

    public CategoryTableSeqHolder() {
    }

    public CategoryTableSeqHolder(CategoryTable[] initial) {
        this.value = initial;
    }

    public TypeCode _type() {
        return CategoryTableSeqHelper.type();
    }

    public void _read(InputStream in) {
        this.value = CategoryTableSeqHelper.read(in);
    }

    public void _write(OutputStream out) {
        CategoryTableSeqHelper.write(out, this.value);
    }
}