Ejemplo n.º 1
0
 public static ICableSwitchCondition ReadFromXMLNode(XmlNode node, CCableSystem cableSystem)
 {
     // Create a condition by length and two states
     CCableSwitchLength2StatesCondition t = new CCableSwitchLength2StatesCondition(cableSystem);
     t.ReadFromXMLNode(node);
     return t;
 }
Ejemplo n.º 2
0
 public CCableSwitchLength2StatesCondition(CCableSystem cableSystem)
 {
     m_cableSystem = cableSystem;
 }
Ejemplo n.º 3
0
            public CCableState(CCableSystem cableSystem, CCablingConnectionIndicator twoPointsIndicator)
                : base(cableSystem)
            {
                m_cableSystem = cableSystem;

                m_twoPointsIndicator = twoPointsIndicator;
            }