/**
* @constructor
*/
function XUIDrinkFlavors() {
}
XUIDrinkFlavors.prototype = {
//组件
/**
"sunburst":{
"title":"旭日",
"name":"sunburst",
"type":"PUISunburstInterface",
"index":0
}*/
/**
"title":{
"title":"标题",
"name":"title",
"type":"PUITitleInterface",
"index":0
}*/
//接口
/**
* 清空
*/
RemoveAll:function () {
},
/**
* 添加父元素数据
* @param {String} strName 父元素名称
* @param {String} srtColor 颜色
* @param {Double} dValue 数值
*/
AddFatherData:function (strName,srtColor,dValue) {
},
/**
* 添加二级元素数据
* @param {Number} nIndex 父元素索引
* @param {String} strName 二级元素名称
* @param {String} srtColor 颜色
* @param {Double} dValue 数值
*/
AddChild2renData:function (nIndex,strName,srtColor,dValue) {
},
}