Example #1
0
        ///
        ///	 <summary> * appends element Loc to the end of the i-th subelement Value
        ///	 *  </summary>
        ///	 * <param name="iSkip">
        ///	 *            number of Value elements to skip (iSkip=0 - first Value
        ///	 *            element) </param>
        ///	 * <returns> JDFLoc: newly created Loc element </returns>
        ///
        public virtual JDFLoc appendValueLocLoc(int iSkip)
        {
            JDFValueLoc val = getValueLoc(iSkip);

            if (val == null)
            {
                return(null);
            }
            return(val.appendLoc());
        }
Example #2
0
        ///
        ///	 <summary> * Gets the j-th element Loc of the i-th element Value
        ///	 *  </summary>
        ///	 * <param name="iSkip">
        ///	 *            number of Value elements to skip (iSkip=0 - first Value
        ///	 *            element) </param>
        ///	 * <param name="jSkip">
        ///	 *            number of Loc subelements of i-th Value element to skip,
        ///	 *            (jSkip=0 - first Loc element) </param>
        ///	 * <returns> JDFLoc: the matching Loc element </returns>
        ///
        public virtual JDFLoc getValueLocLoc(int iSkip, int jSkip)
        {
            JDFValueLoc val = getValueLoc(iSkip);

            if (val == null)
            {
                return(null);
            }
            return(val.getLoc(jSkip));
        }