Exemplo n.º 1
0
        ///
        ///     <summary> * Get all CIELABMeasuringField from the current element
        ///     *  </summary>
        ///     * <returns> Collection<JDFCIELABMeasuringField> </returns>
        ///
        public virtual ICollection <JDFCIELABMeasuringField> getAllCIELABMeasuringField()
        {
            List <JDFCIELABMeasuringField> v = new List <JDFCIELABMeasuringField>();

            JDFCIELABMeasuringField kElem = (JDFCIELABMeasuringField)getFirstChildElement(ElementName.CIELABMEASURINGFIELD, null);

            while (kElem != null)
            {
                v.Add(kElem);

                kElem = (JDFCIELABMeasuringField)kElem.getNextSiblingElement(ElementName.CIELABMEASURINGFIELD, null);
            }

            return(v);
        }
Exemplo n.º 2
0
 ///
 ///      <summary> * (31) create inter-resource link to refTarget </summary>
 ///      * <param name="refTarget"> the element that is referenced </param>
 ///
 public virtual void refCIELABMeasuringField(JDFCIELABMeasuringField refTarget)
 {
     refElement(refTarget);
 }