如何解析JSDoc

时间:2015-03-10 19:17:41

标签: java javascript parsing polymer jsdoc

我有HTML file。里面有一些JSDoc:

/**
 * If true, this slider is disabled.  A disabled slider cannot be tapped
 * or dragged to change the slider value.
 *
 * @attribute disabled
 * @type boolean
 * @default false
 */

我需要获取信息并放入一个bean

class MyBean {
    public String comment;
    public String attribute;
    public String type;
    public String defaultValue;
}

如何解析我的HTML文件?

1 个答案:

答案 0 :(得分:1)

有几个JSDoc解析器。例如,请查看doctrinejsdoc-parse