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

XUIEarthBannd.prototype = {
    //事件
    /**
     * 选中派发
     * @eventname XUI_EarthBannd_ITEMSELECT
     * @eventid 0x0000000001
     */

    //接口
    /**
    * 清除所有
    */
    RemoveAll:function () {
    },

    /**
    * 添加数据
    * @param {String} strLabel 名称
    * @param {ImageProp} strPic 图片路径
    * @param {Number} Uuid 传入id
    */
    AddItem:function (strLabel,strPic,Uuid) {
    },

    /**
    * 按索设置名称
    * @param {Number} nIndex 索引从0开始
    * @param {String} strLabel 名称
    * @property {Collection} LabelByIndex [-1,""]
    */
    SetLabelByIndex:function (nIndex,strLabel) {
    },

    /**
    * 按索引获取名称
    * @param {Number} nIndex 索引从0开始
    * @return {String}
    */
    GetLabelByIndex:function (nIndex) {
    },

    /**
    * 按索引设置背景图片
    * @param {Number} nIndex 索引从0开始
    * @param {ImageProp} strPic 图片路径
    */
    SetPicPath:function (nIndex,strPic) {
    },

    /**
    * 按索引修改Id
    * @param {Number} nIndex 索引从0开始
    * @param {Number} Uuid
    */
    SetIdByIndex:function (nIndex,Uuid) {
    },

    /**
    * 按索引获取Id
    * @param {Number} nIndex 索引从0开始
    * @return {Number}
    */
    GetIdByIndex:function (nIndex) {
    },

    /**
    * 根据Id获取索引
    * @param {Number} Uuid
    * @return {Number}
    */
    GetIndexById:function (Uuid) {
    },

    /**
    * 按索引修改一项
    * @param {Number} nIndex 索引从0开始
    * @param {String} strLabel 名称
    * @param {ImageProp} strPic 图片路径
    * @param {Number} Uuid 传入Id
    */
    SetItemByIndex:function (nIndex,strLabel,strPic,Uuid) {
    },

    /**
    * 按索引删除
    * @param {Number} nIndex
    */
    RemoveByIndex:function (nIndex) {
    },

    /**
    * 根据Id设置选中
    * @param {Number} Uuid
    */
    SetSelectById:function (Uuid) {
    },

    /**
    * 选中获取Id
    * @return {Number}
    */
    GetSelectUuid:function () {
    },

    /**
    * 按索引设置选中
    * @param {Number} nIndex 索引从零开始
    * @property {Number} SelectItemIndex -1
    */
    SetSelectByIndex:function (nIndex) {
    },

    /**
    * 选中获取索引
    * @return {Number}
    */
    GetSelectIndex:function () {
    },

    /**
    * 设置显示个数
    * @param {Number} nNum
    */
    SetItemNum:function (nNum) {
    },

}