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

Diff for /pegasus/src/Pegasus/Common/CIMProperty.cpp between version 1.33 and 1.34

version 1.33, 2006/11/10 18:14:57 version 1.34, 2007/09/03 11:27:02
Line 91 
Line 91 
  
 const CIMName& CIMProperty::getName() const const CIMName& CIMProperty::getName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getName();     return _rep->getName();
 } }
  
 void CIMProperty::setName(const CIMName& name) void CIMProperty::setName(const CIMName& name)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->setName(name);     _rep->setName(name);
 } }
  
 const CIMValue& CIMProperty::getValue() const const CIMValue& CIMProperty::getValue() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getValue();     return _rep->getValue();
 } }
  
 CIMType CIMProperty::getType() const CIMType CIMProperty::getType() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getValue().getType();     return _rep->getValue().getType();
 } }
  
 Boolean CIMProperty::isArray() const Boolean CIMProperty::isArray() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getValue().isArray();     return _rep->getValue().isArray();
 } }
  
 void CIMProperty::setValue(const CIMValue& value) void CIMProperty::setValue(const CIMValue& value)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->setValue(value);     _rep->setValue(value);
 } }
  
 Uint32 CIMProperty::getArraySize() const Uint32 CIMProperty::getArraySize() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getArraySize();     return _rep->getArraySize();
 } }
  
 const CIMName& CIMProperty::getReferenceClassName() const const CIMName& CIMProperty::getReferenceClassName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getReferenceClassName();     return _rep->getReferenceClassName();
 } }
  
 const CIMName& CIMProperty::getClassOrigin() const const CIMName& CIMProperty::getClassOrigin() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getClassOrigin();     return _rep->getClassOrigin();
 } }
  
 void CIMProperty::setClassOrigin(const CIMName& classOrigin) void CIMProperty::setClassOrigin(const CIMName& classOrigin)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->setClassOrigin(classOrigin);     _rep->setClassOrigin(classOrigin);
 } }
  
 Boolean CIMProperty::getPropagated() const Boolean CIMProperty::getPropagated() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPropagated();     return _rep->getPropagated();
 } }
  
 void CIMProperty::setPropagated(Boolean propagated) void CIMProperty::setPropagated(Boolean propagated)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->setPropagated(propagated);     _rep->setPropagated(propagated);
 } }
  
 CIMProperty& CIMProperty::addQualifier(const CIMQualifier& x) CIMProperty& CIMProperty::addQualifier(const CIMQualifier& x)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->addQualifier(x);     _rep->addQualifier(x);
     return *this;     return *this;
 } }
  
 Uint32 CIMProperty::findQualifier(const CIMName& name) const Uint32 CIMProperty::findQualifier(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMQualifier CIMProperty::getQualifier(Uint32 index) CIMQualifier CIMProperty::getQualifier(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 CIMConstQualifier CIMProperty::getQualifier(Uint32 index) const CIMConstQualifier CIMProperty::getQualifier(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 void CIMProperty::removeQualifier(Uint32 index) void CIMProperty::removeQualifier(Uint32 index)
 { {
     _checkRep();      CheckRep(_rep);
     _rep->removeQualifier(index);     _rep->removeQualifier(index);
 } }
  
 Uint32 CIMProperty::getQualifierCount() const Uint32 CIMProperty::getQualifierCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
Line 205 
Line 205 
  
 Boolean CIMProperty::identical(const CIMConstProperty& x) const Boolean CIMProperty::identical(const CIMConstProperty& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  
Line 281 
Line 281 
  
 const CIMName& CIMConstProperty::getName() const const CIMName& CIMConstProperty::getName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getName();     return _rep->getName();
 } }
  
 const CIMValue& CIMConstProperty::getValue() const const CIMValue& CIMConstProperty::getValue() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getValue();     return _rep->getValue();
 } }
  
 CIMType CIMConstProperty::getType() const CIMType CIMConstProperty::getType() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getValue().getType();     return _rep->getValue().getType();
 } }
  
 Boolean CIMConstProperty::isArray() const Boolean CIMConstProperty::isArray() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getValue().isArray();     return _rep->getValue().isArray();
 } }
  
 Uint32 CIMConstProperty::getArraySize() const Uint32 CIMConstProperty::getArraySize() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getArraySize();     return _rep->getArraySize();
 } }
  
 const CIMName& CIMConstProperty::getReferenceClassName() const const CIMName& CIMConstProperty::getReferenceClassName() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getReferenceClassName();     return _rep->getReferenceClassName();
 } }
  
 const CIMName& CIMConstProperty::getClassOrigin() const const CIMName& CIMConstProperty::getClassOrigin() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getClassOrigin();     return _rep->getClassOrigin();
 } }
  
 Boolean CIMConstProperty::getPropagated() const Boolean CIMConstProperty::getPropagated() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getPropagated();     return _rep->getPropagated();
 } }
  
 Uint32 CIMConstProperty::findQualifier(const CIMName& name) const Uint32 CIMConstProperty::findQualifier(const CIMName& name) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->findQualifier(name);     return _rep->findQualifier(name);
 } }
  
 CIMConstQualifier CIMConstProperty::getQualifier(Uint32 index) const CIMConstQualifier CIMConstProperty::getQualifier(Uint32 index) const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifier(index);     return _rep->getQualifier(index);
 } }
  
 Uint32 CIMConstProperty::getQualifierCount() const Uint32 CIMConstProperty::getQualifierCount() const
 { {
     _checkRep();      CheckRep(_rep);
     return _rep->getQualifierCount();     return _rep->getQualifierCount();
 } }
  
Line 352 
Line 352 
  
 Boolean CIMConstProperty::identical(const CIMConstProperty& x) const Boolean CIMConstProperty::identical(const CIMConstProperty& x) const
 { {
     x._checkRep();      CheckRep(x._rep);
     _checkRep();      CheckRep(_rep);
     return _rep->identical(x._rep);     return _rep->identical(x._rep);
 } }
  


Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2