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

XUIHistoricalRecords.prototype = {

    //接口
    /**
     * 添加一项
     * @param {Number} strSerial 序号名
     * @param {String} strStartTime 开始时间
     * @param {String} strTagName 标签名
     * @param {String} strTagValue 标签值
     */
    AddItem:function (strSerial,strStartTime,strTagName,strTagValue) {
    },

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

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

    /**
     * 按索引设置头部名称
     * @param {Number} nIndex 索引从0开始
     * @param {String} strName 项的名称
     * @property {Collection} NameAndIconByIndex [0,"序号"]
     */
    SetNameByIndex:function (nIndex,strName) {
    },

}