/**
* @constructor
*/
function XUITreeWithPolylineEdge() {
}
XUITreeWithPolylineEdge.prototype = {
//组件
/**
"tooltip":{
"title":"提示框组件",
"name":"tooltip",
"type":"PUITooltipInterface",
"index":0
}*/
/**
"tree":{
"title":"树图",
"name":"tree",
"type":"PUITreeInterface",
"index":0
}*/
//接口
/**
* 通过二级获取数据
* @param {Number} nIndex 索引下标
* @param {String} strName 二级数据名称
* @return {Array}
*/
GetDataByChild2:function (nIndex,strName) {
},
/**
* 通过二级删除数据
* @param {Number} nIndex1 系类索引下标
* @param {Number} nIndex2 数据索引下标
* @param {String} strName 二级数据名称
*/
DelDataByChild2:function (nIndex1,nIndex2,strName) {
},
}