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

XUIWaterPipe.prototype = {

    //接口
    /**
    * 设置动画执行
    * @param {Boolean} bRun 是否暂停
    * @property {Boolean} AniRun false
    */
    SetAniRun:function (bRun) {
    },

    /**
    * 设置连接线状态
    * @param {String} strState 状态
    * @property {Combo} LineState ["Normal","Stop","Fault","Disable"]
    */
    SetLineState:function (strState) {
    },

    /**
    * 设置水管朝向
    * @param {Boolean} bReverse  是否反向
    * @property {Boolean} WaterPipeOrientation  false
    */
    SetWaterPipeOrientation:function (bReverse) {
    },

    /**
    * 穿透鼠标事件
    * @param {Boolean} bIgnore 穿透鼠标事件
    * @property {Boolean} IgnoreEvents false
    */
    IgnoreEvents:function (bIgnore) {
    },

}