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

Diff for /pegasus/src/Pegasus/Common/CIMMethodRep.h between version 1.15.2.1 and 1.36

version 1.15.2.1, 2001/08/01 11:17:36 version 1.36, 2007/10/23 17:42:56
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // 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.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec 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 20 
Line 29 
 // //
 //============================================================================== //==============================================================================
 // //
 // Author: Mike Brasher (mbrasher@bmc.com)  
 //  
 // Modified By:  
 //  
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #ifndef Pegasus_MethodRep_h #ifndef Pegasus_MethodRep_h
 #define Pegasus_MethodRep_h #define Pegasus_MethodRep_h
  
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/Exception.h>  #include <Pegasus/Common/Linkage.h>
   #include <Pegasus/Common/InternalException.h>
 #include <Pegasus/Common/String.h> #include <Pegasus/Common/String.h>
   #include <Pegasus/Common/CIMName.h>
 #include <Pegasus/Common/CIMQualifier.h> #include <Pegasus/Common/CIMQualifier.h>
 #include <Pegasus/Common/CIMQualifierList.h> #include <Pegasus/Common/CIMQualifierList.h>
 #include <Pegasus/Common/CIMParameter.h> #include <Pegasus/Common/CIMParameter.h>
Line 40 
Line 47 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 class CIMMethod;  
 class CIMConstMethod; class CIMConstMethod;
 class DeclContext; class DeclContext;
  
 class PEGASUS_COMMON_LINKAGE CIMMethodRep : public Sharable  class CIMMethodRep : public Sharable
 { {
 public: public:
  
     CIMMethodRep(     CIMMethodRep(
         const String& name,          const CIMName& name,
         CIMType type,         CIMType type,
         const String& classOrigin,          const CIMName& classOrigin,
         Boolean propagated);         Boolean propagated);
  
     ~CIMMethodRep();     ~CIMMethodRep();
  
     virtual const String& getName() const      virtual const CIMName& getName() const
     {     {
         return _name;         return _name;
     }     }
  
     void setName(const String& name);      void setName(const CIMName& name);
  
     CIMType getType() const     CIMType getType() const
     {     {
Line 70 
Line 76 
  
     void setType(CIMType type);     void setType(CIMType type);
  
     const String& getClassOrigin() const      const CIMName& getClassOrigin() const
     {     {
         return _classOrigin;         return _classOrigin;
     }     }
  
     void setClassOrigin(const String& classOrigin);      void setClassOrigin(const CIMName& classOrigin);
  
     Boolean getPropagated() const     Boolean getPropagated() const
     {     {
Line 91 
Line 97 
     {     {
         _qualifiers.add(qualifier);         _qualifiers.add(qualifier);
     }     }
     // ATTN: ks 18 May.  Why no non-const version here  
     Uint32 findQualifier(const String& name) const      Uint32 findQualifier(const CIMName& name) const
     {     {
         return _qualifiers.find(name);         return _qualifiers.find(name);
     }     }
     // ATTN:  
     Boolean existsQualifier(const String& name) const  
     {  
         return (findQualifier(name) != PEG_NOT_FOUND) ? true : false;  
     }  
  
     CIMQualifier getQualifier(Uint32 pos)      CIMQualifier getQualifier(Uint32 index)
     {     {
         return _qualifiers.getQualifier(pos);          return _qualifiers.getQualifier(index);
     }     }
  
  
     CIMConstQualifier getQualifier(Uint32 pos) const      CIMConstQualifier getQualifier(Uint32 index) const
     {     {
         return _qualifiers.getQualifier(pos);          return _qualifiers.getQualifier(index);
     }     }
     //  
     void removeQualifier(Uint32 pos)      void removeQualifier(Uint32 index)
     {     {
         _qualifiers.removeQualifier(pos);          _qualifiers.removeQualifier(index);
     }     }
  
  
Line 126 
Line 127 
  
     void addParameter(const CIMParameter& x);     void addParameter(const CIMParameter& x);
  
     Uint32 findParameter(const String& name);      Uint32 findParameter(const CIMName& name) const;
   
     Uint32 findParameter(const String& name) const  
     {  
         return ((CIMMethodRep*)this)->findParameter(name);  
     }  
  
     CIMParameter getParameter(Uint32 pos);      CIMParameter getParameter(Uint32 index);
  
     CIMConstParameter getParameter(Uint32 pos) const      CIMConstParameter getParameter(Uint32 index) const
     {     {
         return ((CIMMethodRep*)this)->getParameter(pos);          return ((CIMMethodRep*)this)->getParameter(index);
     }     }
  
       void removeParameter (Uint32 index);
   
     Uint32 getParameterCount() const;     Uint32 getParameterCount() const;
  
     void resolve(     void resolve(
         DeclContext* declContext,         DeclContext* declContext,
         const String& nameSpace,          const CIMNamespaceName& nameSpace,
         const CIMConstMethod& method);         const CIMConstMethod& method);
  
     void resolve(     void resolve(
         DeclContext* declContext,         DeclContext* declContext,
         const String& nameSpace);          const CIMNamespaceName& nameSpace);
   
     void toXml(Array<Sint8>& out) const;  
  
     virtual void print(PEGASUS_STD(ostream)& os = PEGASUS_STD(cout)) const;      void toXml(Buffer& out) const;
  
     void toMof(Array<Sint8>& out) const;      void toMof(Buffer& out) const;
  
     Boolean identical(const CIMMethodRep* x) const;     Boolean identical(const CIMMethodRep* x) const;
  
Line 166 
Line 162 
  
 private: private:
  
     CIMMethodRep();  
   
     CIMMethodRep(const CIMMethodRep& x);     CIMMethodRep(const CIMMethodRep& x);
  
     CIMMethodRep& operator=(const CIMMethodRep& x);      CIMMethodRep();    // Unimplemented
       CIMMethodRep& operator=(const CIMMethodRep& x);    // Unimplemented
  
     String _name;      CIMName _name;
     CIMType _type;     CIMType _type;
     String _classOrigin;      CIMName _classOrigin;
     Boolean _propagated;     Boolean _propagated;
     CIMQualifierList _qualifiers;     CIMQualifierList _qualifiers;
     Array<CIMParameter> _parameters;     Array<CIMParameter> _parameters;


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2