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

XUIIntegratedCabinList.prototype = {
    //事件
    /**
   * 节点点击事件
   * @eventname XUI_INTEGRATEDCABINLIST_CLICK
   * @eventid 0x00002000
   */

    //接口
    /**
     * 添加一项
     * @param {Boolean} bDsiplay 是否显示
     * @param {Boolean} bleftNormal true代表正常
     * @param {String} strLeftName 中左名称
     * @param {String} strRightName 中右名称
     * @param {String} strRightTitle 标题
     */
    AddItem:function (bDsiplay,bleftNormal,strLeftName,strRightName,strRightTitle) {
    },

    /**
     * 删除列表所有
     */
    RemoveAll:function () {
    },

    /**
     * 按索引删除一项
     * @param {Number} nIndex 索引从0开始
     */
    RemoveByIndex:function (nIndex) {
    },

    /**
     * 获取下标
     */
    GetIndex:function () {
    },

    /**
     * 按索引设置标题
     * @param {Number} nIndex 索引从0开始
     * @param {String} strTitle 项的标题
     * @property {Collection} TitleByIndex [0,"综合舱"]
     */
    SetTitleByIndex:function (nIndex,strTitle) {
    },

    /**
     * 索引设右图标
     * @param {Number} nIndex 索引从0开始
     * @param {Boolean} bRightIcon true代表已点击
     * @property {Collection} RightIconByIndex [0,true]
     */
    SetRightIconByIndex:function (nIndex,bRightIcon) {
    },

    /**
     * 索引改中左文本
     * @param {Number} nIndex 索引从0开始
     * @param {String} strName 文本名称
     * @property {Collection} CenterLeftTextByIndex [0,"k0+50"]
     */
    SetCenterLeftTextByIndex:function (nIndex,strName) {
    },

    /**
     * 索引改中右文本
     * @param {Number} nIndex 索引从0开始
     * @param {String} strName 中右文本
     * @property {Collection} CenterRightTextByIndex [0,"上入口"]
     */
    SetCenterRightTextByIndex:function (nIndex,strName) {
    },

    /**
     * 索引改左侧图片
     * @param {Number} nIndex 索引从0开始
     * @param {Boolean} booPic true代表正常
     * @property {Collection} LeftBigPicByIndex [0,true]
     */
    SetLeftBigPicByIndex:function (nIndex,booPic) {
    },

    /**
     * 按索引修改整列内容
     * @param {Number} nIndex 索引从0开始
     * @param {String} strTitle 项的标题
     * @param {String} strCenterLeftText 中左文本
     * @param {String} strCenterRightText 中右文本
     * @param {Boolean} bLeftPic true表正常
     * @param {Boolean} bRightIcon true代表点击
     * @property {Collection} ItemByIndex [0,"综合舱","k0+50","上入口",false,true]
     */
    SetItemByIndex:function (nIndex,strTitle,strCenterLeftText,strCenterRightText,bLeftPic,bRightIcon) {
    },

    /**
     * 中左文本颜色
     * @param {Number} nIndex 索引从0开始
     * @param {String} strColor 文字颜色
     * @property {Collection} MidLeftTextColorByIndex [0,"0xff01de7d"]
     */
    SetMidLeftTextColorByIndex:function (nIndex,strColor) {
    },

    /**
     * 中右文本颜色
     * @param {Number} nIndex 索引从0开始
     * @param {String} strColor 文字颜色
     * @property {Collection} MidRightTextColorByIndex [0,"0xff000000"]
     */
    SetMidRightTextColorByIndex:function (nIndex,strColor) {
    },

    /**
     * 标题颜色
     * @param {Number} nIndex 索引从0开始
     * @param {String} strColor 文字颜色
     * @property {Collection} TitleColorByIndex [0,"0xff000000"]
     */
    SetTitleColorByIndex:function (nIndex,strColor) {
    },

    /**
     * 按名称检索
     * @param {String} strText
     */
    SearchByName:function (strText) {
    },

}