Example #1
0
        ///
        ///	 <summary> * get the term defined by PreflightAction/@SetRef
        ///	 *  </summary>
        ///	 * <returns> JDFTerm: the term to use </returns>
        ///
        public virtual JDFTerm getPreflightActionSetTerm()
        {
            JDFTest test = getPreflightActionSetRef();

            if (test == null)
            {
                return(null);
            }
            return(test.getTerm());
        }
Example #2
0
        ///
        ///	 <summary> * get the root Term of the Test element in the TestPool that is referenced
        ///	 * by this action
        ///	 *  </summary>
        ///	 * <returns> JDFTerm: the referenced term, null if none exists </returns>
        ///
        public virtual JDFTerm getTestTerm()
        {
            JDFTest test = getTest();

            if (test == null)
            {
                return(null);
            }
            return(test.getTerm(null, 0));
        }