/**
* @constructor
*/
function XUITreeIcon() {
}

XUITreeIcon.prototype = {
    //事件
    /**
     * 树节点
     * @eventname XUI_TREEICONLIST_ITEMSELECT
     * @eventid 0x0000000001
     */

    //接口
    /**
    * 设置组名样式
    * @param {Number} nSize 字体大小
    * @param {String} strColor 颜色
    * @property {Collection} LabelStyle [16,"0xffffffff"]
    */
    SetLabelStyle:function (nSize,strColor) {
    },

    /**
    * 设置组对象名样式
    * @param {Number} nSize 字体大小
    * @param {String} strColor 颜色
    * @property {Collection} MaskStyle [16,"0xffffffff"]
    */
    SetMaskStyle:function (nSize,strColor) {
    },

    /**
    * 添加组
    * @param {String} strName 添加组
    * @property {String} GroupName  "行星"
    */
    AddGroup:function (strName) {
    },

    /**
    * 添加项
    * @param {Number} nIndex 组的索引
    * @param {ImageProp} strImage 添加icon
    * @param {String} strItemName 添加项
    * @param {Number} nUserData
    */
    AddItem:function (nIndex,strImage,strItemName,nUserData) {
    },

    /**
    * 删除全部节点
    */
    RemoveAll:function () {
    },

    /**
    * 搜索
    * @param {String} strText 搜索
    */
    Search:function (strText) {
    },

}