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

Diff for /pegasus/src/Pegasus/Common/CIMParamValueRep.cpp between version 1.19 and 1.22.2.1

version 1.19, 2005/01/16 02:32:31 version 1.22.2.1, 2005/09/30 16:28:15
Line 1 
Line 1 
 //%2004////////////////////////////////////////////////////////////////////////  //%2005////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
 // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems. // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
Line 6 
Line 6 
 // IBM Corp.; EMC Corporation, The Open Group. // IBM Corp.; EMC Corporation, The Open Group.
 // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.; // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
 // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group. // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 48 
Line 50 
     Boolean isTyped)     Boolean isTyped)
     : _parameterName(parameterName), _value(value), _isTyped(isTyped)     : _parameterName(parameterName), _value(value), _isTyped(isTyped)
 { {
       // ensure parameterName is not null
       if(parameterName.size() == 0)
       {
           throw UninitializedObjectException();
       }
 } }
  
 CIMParamValueRep::~CIMParamValueRep() CIMParamValueRep::~CIMParamValueRep()
Line 59 
Line 66 
 //     <!ELEMENT PARAMVALUE (VALUE|VALUE.REFERENCE|VALUE.ARRAY|VALUE.REFARRAY)?> //     <!ELEMENT PARAMVALUE (VALUE|VALUE.REFERENCE|VALUE.ARRAY|VALUE.REFARRAY)?>
 //     <!ATTLIST PARAMVALUE //     <!ATTLIST PARAMVALUE
 //         %CIMName; //         %CIMName;
   //         %EmbeddedObject; #IMPLIED
 //         %ParamType;> //         %ParamType;>
 // //
 //------------------------------------------------------------------------------ //------------------------------------------------------------------------------
 void CIMParamValueRep::toXml(Array<char>& out) const  void CIMParamValueRep::toXml(Buffer& out) const
 { {
     out << "<PARAMVALUE NAME=\"" << _parameterName << "\"";     out << "<PARAMVALUE NAME=\"" << _parameterName << "\"";
  
Line 70 
Line 78 
  
     if (_isTyped)     if (_isTyped)
     {     {
           // If the property type is CIMObject, then
           //   encode the property in CIM-XML as a string with the EMBEDDEDOBJECT attribute
           //   (there is not currently a CIM-XML "object" datatype)
           // else
           //   output the real type
           if (type == CIMTYPE_OBJECT)
           {
               out << " PARAMTYPE=\"string\"";
               out << " EMBEDDEDOBJECT=\"object\"";
           }
           else
           {
         out << " PARAMTYPE=\"" << cimTypeToString (type) << "\"";         out << " PARAMTYPE=\"" << cimTypeToString (type) << "\"";
     }     }
       }
  
     out << ">\n";     out << ">\n";
     XmlWriter::appendValueElement(out, _value);     XmlWriter::appendValueElement(out, _value);
Line 93 
Line 114 
  
 void CIMParamValueRep::setParameterName(String& parameterName) void CIMParamValueRep::setParameterName(String& parameterName)
 { {
       // ensure parameterName is not null
       if(parameterName.size() == 0)
       {
           throw UninitializedObjectException();
       }
   
     _parameterName = parameterName;     _parameterName = parameterName;
 } }
  


Legend:
Removed from v.1.19  
changed lines
  Added in v.1.22.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2