Пример #1
0
        ///
        ///	 <summary> * Gets enum value of attribute Status, if it is not specified, inherit it from the StatusPool
        ///	 *  </summary>
        ///	 * <returns> EnumNodeStatus: the attribute value </returns>
        ///
        public override EnumNodeStatus getStatus()
        {
            if (hasAttribute(AttributeName.STATUS))
            {
                return(base.getStatus());
            }
            JDFStatusPool pool = (JDFStatusPool)ParentNode;

            return(pool.getStatus());
        }
Пример #2
0
        ///
        ///	 <summary> * Gets string value of attribute StatusDetails, if it is not specified, inherit it from the StatusPool
        ///	 *  </summary>
        ///	 * <returns> String: the attribute value </returns>
        ///
        public override string getStatusDetails()
        {
            if (hasAttribute(AttributeName.STATUSDETAILS))
            {
                return(base.getStatusDetails());
            }
            JDFStatusPool pool = (JDFStatusPool)ParentNode;

            return(pool.getStatusDetails());
        }