All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.mapway.document.helper.html.Outputparam Maven / Gradle / Ivy

The newest version!
package cn.mapway.document.helper.html;

import cn.mapway.document.module.Entry;

import java.util.List;

/**
 * 输出参数
 */
public class Outputparam {
    ObjTable t;

    public void parse(Entry entry, List objList) {
        t = new ObjTable();
        t.parse(entry.output, objList);
    }

    public String toString() {
        return t.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy