(file) Return to CIMObject.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/CIMObject.h between version 1.35 and 1.36

version 1.35, 2002/08/20 17:39:37 version 1.36, 2002/08/27 23:38:44
Line 132 
Line 132 
         @exception Throws the IndexOutOfBoundsException exception if the index         @exception Throws the IndexOutOfBoundsException exception if the index
         is out of bounds         is out of bounds
     */     */
     CIMQualifier getQualifier(Uint32 pos);      CIMQualifier getQualifier(Uint32 index);
  
     /** getQualifier - Retrieves the qualifier object defined by the     /** getQualifier - Retrieves the qualifier object defined by the
         index input parameter.  @ index for the qualifier object.         index input parameter.  @ index for the qualifier object.
Line 143 
Line 143 
         @exception Throws the IndexOutOfBoundsException exception if the index         @exception Throws the IndexOutOfBoundsException exception if the index
         is out of bounds         is out of bounds
     */     */
     CIMConstQualifier getQualifier(Uint32 pos) const;      CIMConstQualifier getQualifier(Uint32 index) const;
  
     void removeQualifier(Uint32 pos);      void removeQualifier(Uint32 index);
  
     /** getQualifierCount - Gets the number of CIMQualifier objects     /** getQualifierCount - Gets the number of CIMQualifier objects
         defined for this CIMObject.         defined for this CIMObject.
Line 185 
Line 185 
         @exception Throws the IndexOutOfBoundsException exception if the index         @exception Throws the IndexOutOfBoundsException exception if the index
         is out of bounds         is out of bounds
     */     */
     CIMProperty getProperty(Uint32 pos);      CIMProperty getProperty(Uint32 index);
  
     /** getProperty - Gets the CIMproperty object in the CIMObject defined     /** getProperty - Gets the CIMproperty object in the CIMObject defined
         by the input index parameter.         by the input index parameter.
         @param Index to the property object in the CIMObject.         @param Index to the property object in the CIMObject.
         The index to qualifier objects is zero-origin and continuous  
         so that incrementing loops can be used to get all qualifier  
         objects in a CIMInstnace.  
         @return CIMProperty object corresponding to the index.         @return CIMProperty object corresponding to the index.
         @exception Throws the IndexOutOfBoundsException exception if the index          @exception IndexOutOfBoundsException if the index is outside the
         is out of bounds          range of properties in this object.
     */     */
     CIMConstProperty getProperty(Uint32 pos) const;      CIMConstProperty getProperty(Uint32 index) const;
  
     /** removeProperty - Removes the property represented      /** removeProperty - Remove the specified property from the instance
         by the position input parameter from the instance.          @param index Index to the property to be removed from the
         @param pos Index to the property to be removed from the          instance.  Normally this is obtained by findProperty();
         instance.  Normally this is obtained by getProperty();          @exception IndexOutOfBoundsException if the index is outside the
         @exception Throws OutofBounds if index is not a property object          range of properties in this object.
     */     */
     void removeProperty(Uint32 pos);      void removeProperty(Uint32 index);
  
     /** getPropertyCount - Gets the number of CIMProperty     /** getPropertyCount - Gets the number of CIMProperty
         objects defined for this CIMObject.         objects defined for this CIMObject.
Line 313 
Line 310 
  
     Uint32 findQualifier(const CIMName& name) const;     Uint32 findQualifier(const CIMName& name) const;
  
     CIMConstQualifier getQualifier(Uint32 pos) const;      CIMConstQualifier getQualifier(Uint32 index) const;
  
     Uint32 getQualifierCount() const;     Uint32 getQualifierCount() const;
  
     Uint32 findProperty(const CIMName& name) const;     Uint32 findProperty(const CIMName& name) const;
  
     CIMConstProperty getProperty(Uint32 pos) const;      CIMConstProperty getProperty(Uint32 index) const;
  
     Uint32 getPropertyCount() const;     Uint32 getPropertyCount() const;
  


Legend:
Removed from v.1.35  
changed lines
  Added in v.1.36

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2