Ejemplo n.º 1
0
        /**
         * This will set an object at a specific index.
         *
         * @param index zero based index into array.
         * @param object The object to set.
         */
        public void set(int index, ICosObject obj)
        {
            CosBase baseObj = null;

            if (obj != null)
            {
                baseObj = baseObj.GetCosObject();
            }

            set(index, baseObj);
        }
Ejemplo n.º 2
0
 /**
  * This will add an object to the array.
  *
  * @param object The object to add to the array.
  */
 public void add(ICosObject obj)
 {
     objects.Add(obj.GetCosObject());
 }