我有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文件?