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

Diff for /pegasus/src/Pegasus/Common/CIMValue.h between version 1.57 and 1.57.4.1

version 1.57, 2009/12/15 11:39:33 version 1.57.4.1, 2012/02/15 17:47:06
Line 596 
Line 596 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Boolean into which the value is stored.          updated if the value is null (isNull() == true).
           <pre>
               // get with complete checking on type and nullness
               Boolean v;
               CIMValue value = property.getValue();
               if ((value.getType() == CIMTYPE_BOOLEAN) && (!value.isNull()))
                   value.get(v);
               or
               // Set the value from property into v if the value is
               // of Boolean type and !isNull(). If type incorrect, generates
               // an exception.  If CIMValue is null, leaves v false. Else
               // sets Boolean value from property into v.
               Boolean v = false;
               property.getValue().get(v);
           </pre>
           @param x Output Boolean into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 606 
Line 622 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Uint8 into which the value is stored.          updated if the value is null (isNull() == true).
   
           @param x Output Uint8 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 616 
Line 635 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Sint8 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Sint8 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 626 
Line 647 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Uint16 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Uint16 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 636 
Line 659 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Sint16 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Sint16 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 646 
Line 671 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
           updated if the value is null (isNull() == true).
         <pre>         <pre>
             Uint32 v;             Uint32 v;
             CIMValue value = property.getValue();             CIMValue value = property.getValue();
             if ((value.getType() == CIMTYPE_UINT32) && (!value.isNull()))              if ((value.getType() == CIMTYPE_SINT32) && (!value.isNull()))
                 value.get(v);                 value.get(v);
         </pre>         </pre>
         @param x Output Uint32 into which the value is stored.          @param x Output Uint32 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 662 
Line 689 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Sint32 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Sint32 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 672 
Line 701 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Uint64 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Uint64 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 682 
Line 713 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Sint64 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Sint64 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 692 
Line 725 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Real32 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Real32 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 702 
Line 737 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Real64 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Real64 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 712 
Line 749 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Char16 into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Char16 into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 722 
Line 761 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output String into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output String into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 732 
Line 773 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output CIMDateTime into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output CIMDateTime into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 742 
Line 785 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output CIMObjectPath into which the value is stored.          updated if the value is null (isNull() == true).).
           @param x Output CIMObjectPath into which the value is stored if
               CIMValue state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 752 
Line 797 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output CIMObject into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output CIMObject into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 762 
Line 809 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output CIMInstance into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output CIMInstance into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 772 
Line 821 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Boolean Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Boolean Array into which the value is stored if
               CIMValue state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 782 
Line 833 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Uint8 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Uint8 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 792 
Line 845 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Sint8 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Sint8 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 802 
Line 857 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Uint16 Array into which the value is stored.          updated if the value is null (isNull() == true).).
           @param x Output Uint16 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 812 
Line 869 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Sint16 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Sint16 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 822 
Line 881 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Uint32 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Uint32 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 832 
Line 893 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Sint32 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Sint32 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 842 
Line 905 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Uint64 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Uint64 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 852 
Line 917 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Sint64 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Sint64 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 862 
Line 929 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Real32 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Real32 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 872 
Line 941 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Real64 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Real64 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 882 
Line 953 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output Char16 Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output Char16 Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 892 
Line 965 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output String Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output String Array into which the value is stored if CIMValue
               state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 902 
Line 977 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output CIMDateTime Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output CIMDateTime Array into which the value is stored if
               CIMValue state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 912 
Line 989 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output CIMObjectPath Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output CIMObjectPath Array into which the value is stored if
               CIMValue state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 922 
Line 1001 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output CIMObject Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output CIMObject Array into which the value is stored if
               CIMValue state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 932 
Line 1013 
  
     /**     /**
         Gets the value of the CIMValue.  The caller should first verify that         Gets the value of the CIMValue.  The caller should first verify that
         the value is of the expected type and is not null.  The behavior is          the value is not null and may verify type to avoid the possibility of
         undefined for null values.          the TypeMismatchException.  The output parameter x is NOT
         @param x Output CIMInstance Array into which the value is stored.          updated if the value is null (isNull() == true).
           @param x Output CIMInstance Array into which the value is stored if
               CIMValue state is not null.
         @exception TypeMismatchException If the value type does not match the         @exception TypeMismatchException If the value type does not match the
             output parameter.             output parameter.
     */     */
Line 996 
Line 1079 
     /**     /**
         <I><B>Deprecated Interface</B></I><BR>         <I><B>Deprecated Interface</B></I><BR>
         Gets the Sint8 value of the CIMValue.  The caller should first verify         Gets the Sint8 value of the CIMValue.  The caller should first verify
         that the value is of the expected type and is not null.  The behavior          that the value is of the expected type and is not null.  The output
         is undefined for null values.          parameter x is not updated if the value is null (isNull() == true).
         (Note: This method exists solely to support binary compatibility with         (Note: This method exists solely to support binary compatibility with
         a previous definition of the Sint8 type.)         a previous definition of the Sint8 type.)
         @param x Output variable into which the value is stored.         @param x Output variable into which the value is stored.
Line 1008 
Line 1091 
         <I><B>Deprecated Interface</B></I><BR>         <I><B>Deprecated Interface</B></I><BR>
         Gets the Sint8 Array value of the CIMValue.  The caller should first         Gets the Sint8 Array value of the CIMValue.  The caller should first
         verify that the value is of the expected type and is not null.  The         verify that the value is of the expected type and is not null.  The
         behavior is undefined for null values.          output parameter x is not updated if the value is null
           (isNull() == true).
         (Note: This method exists solely to support binary compatibility with         (Note: This method exists solely to support binary compatibility with
         a previous definition of the Sint8 type.)         a previous definition of the Sint8 type.)
         @param x Output Array variable into which the value is stored.         @param x Output Array variable into which the value is stored.


Legend:
Removed from v.1.57  
changed lines
  Added in v.1.57.4.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2