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

XUIFanList.prototype = {

    //接口
    /**
    * 设置文字内容
    * @param {Array} arrContent 内容
    * @property {Array} DetailContent ["主轴转速偏高","偏航系统出现偏移","发电机电流过大","分冷装置散热不足"]
    */
    SetDetailContent:function (arrContent) {
    },

    /**
    * 设置文字颜色
    * @param {String} strColor 文字颜色
    * @property {Color} DetailColor "0xffFEFEFE"
    */
    SetDetailColor:function (strColor) {
    },

    /**
    * 设置文字字体大小
    * @param {Number} nFontSize 字体大小
    * @property {Number} DetailFontSize 15
    */
    SetDetailFontSize:function (nFontSize) {
    },

    /**
    * 设置文字字块宽高
    * @param {Double} nWidth 宽度
    * @param {Double} nHeight 高度
    * @property {Collection} DetailDivSize [75.515,32.745]
    */
    SetDetailDivSize:function (nWidth,nHeight) {
    },

    /**
    * 设置文字位置
    * @param {Double} nVerPos 垂直位置
    * @param {Double} nHorPos 水平位置
    * @property {Collection} DetailDivPosition [-3.65,-12.48]
    */
    SetDetailDivPosition:function (nVerPos,nHorPos) {
    },

    /**
    * 设置编号内容
    * @param {Array} arrContent 内容
    * @property {Array} NumberContent ["CNF0123", "CNF0124", "CNF0125", "CNF0126", "CNF0127", "CNF0128", "CNF0129", "CNF0130"]
    */
    SetNumberContent:function (arrContent) {
    },

    /**
    * 设置编号颜色
    * @param {String} strColor 编号颜色
    * @property {Color} NumberColor "0xffB2B2E4"
    */
    SetNumberColor:function (strColor) {
    },

    /**
    * 设置编号字体大小
    * @param {Number} nFontSize 字体大小
    * @property {Number} NumberFontSize 12
    */
    SetNumberFontSize:function (nFontSize) {
    },

    /**
    * 设置编号字块宽高
    * @param {Double} nWidth 宽度
    * @param {Double} nHeight 高度
    * @property {Collection} NumberDivSize [22.655,30.92]
    */
    SetNumberDivSize:function (nWidth,nHeight) {
    },

    /**
    * 设置编号位置
    * @param {Double} nVerPos 垂直位置
    * @param {Double} nHorPos 水平位置
    * @property {Collection} NumberDivPosition [-16.38,7.884]
    */
    SetNumberDivPosition:function (nVerPos,nHorPos) {
    },

    /**
    * 设置时间颜色
    * @param {String} strColor 时间颜色
    * @property {Color} TimeColor "0xffB2B2E4"
    */
    SetTimeColor:function (strColor) {
    },

    /**
    * 设置时间字体大小
    * @param {Number} nFontSize 字体大小
    * @property {Number} TimeFontSize 12
    */
    SetTimeFontSize:function (nFontSize) {
    },

    /**
    * 设置时间字块宽高
    * @param {Double} nWidth 宽度
    * @param {Double} nHeight 高度
    * @property {Collection} TimeDivSize [16.42,30.92]
    */
    SetTimeDivSize:function (nWidth,nHeight) {
    },

    /**
    * 设置时间位置
    * @param {Double} nVerPos 垂直位置
    * @param {Double} nHorPos 水平位置
    * @property {Collection} TimeDivPosition [-47.28,82.085]
    */
    SetTimeDivPosition:function (nVerPos,nHorPos) {
    },

    /**
    * 设置图标字块宽高
    * @param {Double} nWidth 宽度
    * @param {Double} nHeight 高度
    * @property {Collection} IconDivSize [4.6,30.92]
    */
    SetIconDivSize:function (nWidth,nHeight) {
    },

    /**
    * 设置图标位置
    * @param {Double} nVerPos 垂直位置
    * @param {Double} nHorPos 水平位置
    * @property {Collection} IconDivPosition [0,91.935]
    */
    SetIconDivPosition:function (nVerPos,nHorPos) {
    },

    /**
    * 设置左上三角字块大小
    * @param {Double} nWidth 宽度
    * @param {Double} nHeight 高度
    * @property {Collection} TriangleDivSize [5.255,29.1]
    */
    SetTriangleDivSize:function (nWidth,nHeight) {
    },

    /**
    * 设置左上三角颜色
    * @param {Number} nIndex 下标
    * @param {Boolean} bStyle true红色false黄色
    * @property {Collection} TriangleStyle [0,true]
    */
    SetTriangleStyle:function (nIndex,bStyle) {
    },

    /**
    * 设置列表项大小
    * @param {Number} nWidth 宽度
    * @param {Number} nHeight 高度
    * @property {Collection} ItemSize [99,21]
    */
    SetItemSize:function (nWidth,nHeight) {
    },

    /**
    * 设置列表项上边距
    * @param {Number} nTop 上边距
    * @property {Number} ItemMarTop 12
    */
    SetItemMarTop:function (nTop) {
    },

    /**
    * 设置整体大小
    * @param {Number} nWidth 宽度
    * @param {Number} nHeight 高度
    * @property {Collection} WholeSize [98,100]
    */
    SetWholeSize:function (nWidth,nHeight) {
    },

    /**
    * 重置数据
    * @param {Number} nNum 个数
    */
    SetData:function (nNum) {
    },

    /**
    * 增加数据
    */
    AddData:function () {
    },

    /**
    * 删除一位数据
    * @param {Number} nIndex 下标
    */
    DeleteData:function (nIndex) {
    },

}