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

XUIDataSelection.prototype = {

    //接口
    /**
    * 加入数据
    * @param {Array} arrData 数据
    */
    AddData:function (arrData) {
    },

    /**
    * 右侧加入数据
    * @param {Array} arrData 数据
    */
    AddDataToRight:function (arrData) {
    },

    /**
    * 插入数据
    * @param {Number} nIndex 索引
    * @param {String} strData 数据
    */
    InsertData:function (nIndex,strData) {
    },

    /**
    * 右侧插入数据
    * @param {Number} nIndex 索引
    * @param {String} strData 数据
    */
    InsertDataToRight:function (nIndex,strData) {
    },

    /**
    * 删除数据
    * @param {Number} nIndex 索引
    */
    DeleteData:function (nIndex) {
    },

    /**
    * 删除右侧数据
    * @param {Number} nIndex 索引
    */
    DeleteDataToRight:function (nIndex) {
    },

    /**
    * 清空左侧数据
    */
    ClearLeftData:function () {
    },

    /**
    * 清空右侧数据
    */
    ClearRightData:function () {
    },

    /**
    * 清空所有数据
    */
    ClearAllData:function () {
    },

    /**
    * 获得左侧数据
    * @return {Array}
    */
    GetLeftData:function () {
    },

    /**
    * 获得右侧数据
    * @return {Array}
    */
    GetRightData:function () {
    },

    /**
    * 修改左侧某数据
    * @param {Number} nIndex 索引
    * @param {String} strText 数据
    */
    SetLeftDataByIndex:function (nIndex,strText) {
    },

    /**
    * 获得左侧某数据
    * @param {Number} nIndex 索引
    * @return {String}
    */
    GetLeftDataByIndex:function (nIndex) {
    },

    /**
    * 修改右侧某数据
    * @param {Number} nIndex 索引
    * @param {String} strText 数据
    */
    SetRightDataByIndex:function (nIndex,strText) {
    },

    /**
    * 获得右侧某数据
    * @param {Number} nIndex 索引
    * @return {String}
    */
    GetRightDataByIndex:function (nIndex) {
    },

    /**
    * 选择模式
    * @param {Boolean} bModule 模式
    * @property {Boolean} SelectionModule true
    */
    SetSelectionModule:function (bModule) {
    },

    /**
    * 获得选择模式
    * @return {Boolean}
    */
    GetSelectionModule:function () {
    },

    /**
    * 滚动条样式
    * @param {Number} nWidth 滚动条宽度
    * @param {Number} nTrackR 轨道圆角
    * @param {Number} nThumbR 滑块圆角
    * @param {Number} nButtonH 按钮高度
    * @param {Number} nButtonR 按钮圆角
    * @property {Collection} ScrollBarFacade [10,10,10,0,0]
    */
    SetScrollBarFacade:function (nWidth,nTrackR,nThumbR,nButtonH,nButtonR) {
    },

    /**
    * 滚动条颜色
    * @param {String} bgColor 整体背景色
    * @param {String} trackColor 轨道颜色
    * @param {String} ThumbColor 滑块颜色
    * @param {String} ButtonColor 按钮颜色
    * @property {Collection} ScrollBarColors ["0x0000ff00", "0x0000ff00", "0xff1b4675", "0x0000ff00"]
    */
    SetScrollBarColors:function (bgColor,trackColor,ThumbColor,ButtonColor) {
    },

    /**
    * 左框背景色
    * @param {String} strColor 背景色
    * @property {Color} LeftSelectBgColor "0xff213361"
    */
    SetLeftSelectBgColor:function (strColor) {
    },

    /**
    * 右框背景色
    * @param {String} strColor 背景色
    * @property {Color} RightSelectBgColor "0xff213361"
    */
    SetRightSelectBgColor:function (strColor) {
    },

    /**
    * 鼠标划过颜色
    * @param {String} strColor 颜色
    * @property {Color} MousemoveColor "0xff283e75"
    */
    SetMousemoveColor:function (strColor) {
    },

    /**
    * 鼠标选中颜色
    * @param {String} strColor 颜色
    * @property {Color} MouseclickColor "0xff111f3f"
    */
    SetMouseclickColor:function (strColor) {
    },

    /**
    * 左框文字颜色
    * @param {String} strColor 颜色
    * @property {Color} LeftTextColor "0xffffffff"
    */
    SetLeftTextColor:function (strColor) {
    },

    /**
    * 右框文字颜色
    * @param {String} strColor 颜色
    * @property {Color} RightTextColor "0xffffffff"
    */
    SetRightTextColor:function (strColor) {
    },

    /**
    * 左框文字大小
    * @param {Number} nSize 大小
    * @property {Number} LeftTextSize 16
    */
    SetLeftTextSize:function (nSize) {
    },

    /**
    * 右框文字大小
    * @param {Number} nSize 大小
    * @property {Number} RightTextSize 16
    */
    SetRightTextSize:function (nSize) {
    },

    /**
    * 左标题颜色
    * @param {String} strColor 颜色
    * @property {Color} LeftTitleColor "0xffffffff"
    */
    SetLeftTitleColor:function (strColor) {
    },

    /**
    * 右标题颜色
    * @param {String} strColor 颜色
    * @property {Color} RightTitleColor "0xffffffff"
    */
    SetRightTitleColor:function (strColor) {
    },

    /**
    * 左标题文字大小
    * @param {Number} nSize 左侧标题文字大小
    * @property {Number} LeftTitleSize 16
    */
    SetLeftTitleSize:function (nSize) {
    },

    /**
    * 右标题文字大小
    * @param {Number} nSize 右侧标题文字大小
    * @property {Number} RightTitleSize 16
    */
    SetRightTitleSize:function (nSize) {
    },

    /**
    * 左标题
    * @param {String} strText 左标题
    * @property {String} LeftTitleContent "原子钟编号"
    */
    SetLeftTitleContent:function (strText) {
    },

    /**
    * 右标题
    * @param {String} strText 右标题
    * @property {String} RightTitleContent "原子钟组"
    */
    SetRightTitleContent:function (strText) {
    },

    /**
    * 圆角
    * @param {Number} nRadius 圆角
    * @property {Number} Radius 10
    */
    SetRadius:function (nRadius) {
    },

    /**
    * 按钮大小
    * @param {Number} nWidth 宽
    * @param {Number} nHeight 按钮高
    * @property {Collection} ButtonSize [44,28]
    */
    SetButtonSize:function (nWidth,nHeight) {
    },

    /**
    * 按钮两端间距
    * @param {Number} nSpace 间距
    * @property {Number} ButtonSizeSpace 75
    */
    SetButtonSizeSpace:function (nSpace) {
    },

    /**
    * 上方按钮背景图
    * @param {ImageProp} strImg 背景图
    * @property {ImageProp} TopButtonBgImage ""
    */
    SetTopButtonBgImage:function (strImg) {
    },

    /**
    * 下方按钮背景图
    * @param {ImageProp} strImg 背景图
    * @property {ImageProp} BotButtonBgImage ""
    */
    SetBotButtonBgImage:function (strImg) {
    },

    /**
    * 绘制背景
    * @param {Boolean} bDraw true背景色,false背景图
    * @property {Boolean} DrawBgColor true
    */
    SetDrawBgColor:function (bDraw) {
    },

    /**
    * 背景颜色
    * @param {String} strColor 颜色
    * @property {Color} BgColor "0xff06262e"
    */
    SetBgColor:function (strColor) {
    },

    /**
    * 背景图
    * @param {ImageProp} strImg 图片
    * @property {ImageProp} BgImg ""
    */
    SetBgImg:function (strImg) {
    },

    /**
    * 获得滚动条样式
    * @return {Array}
    */
    GetScrollBarFacade:function () {
    },

    /**
    * 获得滚动条颜色
    * @return {Array}
    */
    GetScrollBarColors:function () {
    },

    /**
    * 获得左框背景色
    * @return {String}
    */
    GetLeftSelectBgColor:function () {
    },

    /**
    * 获得右框背景色
    * @return {String}
    */
    GetRightSelectBgColor:function () {
    },

    /**
    * 获得鼠标划过颜色
    * @return {String}
    */
    GetMousemoveColor:function () {
    },

    /**
    * 获得鼠标选中颜色
    * @return {String}
    */
    GetMouseclickColor:function () {
    },

    /**
    * 获得左框文字颜色
    * @return {String}
    */
    GetLeftTextColor:function () {
    },

    /**
    * 获得右框文字颜色
    * @return {String}
    */
    GetRightTextColor:function () {
    },

    /**
    * 获得左框文字大小
    * @return {Number}
    */
    GetLeftTextSize:function () {
    },

    /**
    * 获得右框文字大小
    * @return {Number}
    */
    GetRightTextSize:function () {
    },

    /**
    * 获得左标题颜色
    * @return {String}
    */
    GetLeftTitleColor:function () {
    },

    /**
    * 获得右标题颜色
    * @return {String}
    */
    GetRightTitleColor:function () {
    },

    /**
    * 获得左标题文字大小
    * @return {Number}
    */
    GetLeftTitleSize:function () {
    },

    /**
    * 获得右标题文字大小
    * @return {Number}
    */
    GetRightTitleSize:function () {
    },

    /**
    * 获得左标题
    * @return {String}
    */
    GetLeftTitleContent:function () {
    },

    /**
    * 获得右标题
    * @return {String}
    */
    GetRightTitleContent:function () {
    },

    /**
    * 获得圆角
    * @return {Number}
    */
    GetRadius:function () {
    },

    /**
    * 获得按钮大小
    * @return {Array}
    */
    GetButtonSize:function () {
    },

    /**
    * 获得两端间距
    * @return {String}
    */
    GetButtonSizeSpace:function () {
    },

    /**
    * 获得上方按钮背景图
    * @return {String}
    */
    GetTopButtonBgImage:function () {
    },

    /**
    * 获得下方按钮背景图
    * @return {String}
    */
    GetBotButtonBgImage:function () {
    },

    /**
    * 获得绘制背景
    * @return {Boolean}
    */
    IsDrawBgColor:function () {
    },

    /**
    * 获得背景颜色
    * @return {String}
    */
    GetBgColor:function () {
    },

    /**
    * 获得背景图
    * @return {String}
    */
    GetBgImg:function () {
    },

}