cn.mapway.document.helper.html.Outputparam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-tools-doc Show documentation
Show all versions of api-tools-doc Show documentation
auto gen doc from api with ui
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();
}
}