(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.1 and 1.32.2.1

version 1.1, 2001/02/18 18:39:06 version 1.32.2.1, 2006/02/10 16:09:34
Line 1 
Line 1 
 //BEGIN_LICENSE  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000 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
   // of this software and associated documentation files (the "Software"), to
   // deal in the Software without restriction, including without limitation the
   // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
   // sell copies of the Software, and to permit persons to whom the Software is
   // furnished to do so, subject to the following conditions:
   //
   // THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE SHALL BE INCLUDED IN
   // ALL COPIES OR SUBSTANTIAL PORTIONS OF THE SOFTWARE. THE SOFTWARE IS PROVIDED
   // "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
   // LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
   // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
   // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
   // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
   // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
   //
   //==============================================================================
   //
   // Author: Mike Brasher (mbrasher@bmc.com)
   //
   // Modified By: Carol Ann Krug Graves, Hewlett-Packard Company
   //                  (carolann_graves@hp.com)
   //              David Dillard, VERITAS Software Corp.
   //                  (david.dillard@veritas.com)
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a  //%/////////////////////////////////////////////////////////////////////////////
 // copy of this software and associated documentation files (the "Software"),  
 // to deal in the Software without restriction, including without limitation  
 // the rights to use, copy, modify, merge, publish, distribute, sublicense,  
 // and/or sell copies of the Software, and to permit persons to whom the  
 // Software is furnished to do so, subject to the following conditions:  
 //  
 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  
 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  
 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL  
 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER  
 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING  
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER  
 // DEALINGS IN THE SOFTWARE.  
 //  
 //END_LICENSE  
 //BEGIN_HISTORY  
 //  
 // Author:  
 //  
 // $Log$  
 // Revision 1.1  2001/02/18 18:39:06  mike  
 // new  
 //  
 // Revision 1.2  2001/02/18 03:56:01  mike  
 // Changed more class names (e.g., ConstClassDecl -> CIMConstClass)  
 //  
 // Revision 1.1  2001/02/16 02:07:06  mike  
 // Renamed many classes and headers (using new CIM prefixes).  
 //  
 // Revision 1.1.1.1  2001/01/14 19:52:58  mike  
 // Pegasus import  
 //  
 //  
 //END_HISTORY  
  
 #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 52 
Line 54 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 class CIMMethod;  
 class CIMConstMethod; class CIMConstMethod;
 class DeclContext; class DeclContext;
  
Line 61 
Line 62 
 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
     {     {
         return _type;         return _type;
     }     }
  
     void setType(CIMType type)      void setType(CIMType type);
     {  
         _type = type;  
   
         if (type == CIMType::NONE)  
             throw NullType();  
     }  
  
     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 110 
Line 105 
         _qualifiers.add(qualifier);         _qualifiers.add(qualifier);
     }     }
  
     Uint32 findQualifier(const String& name) const      Uint32 findQualifier(const CIMName& name) const
     {     {
         return _qualifiers.find(name);         return _qualifiers.find(name);
     }     }
  
     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(index);
       }
   
       void removeQualifier(Uint32 index)
     {     {
         return _qualifiers.getQualifier(pos);          _qualifiers.removeQualifier(index);
     }     }
  
   
     Uint32 getQualifierCount() const     Uint32 getQualifierCount() const
     {     {
         return _qualifiers.getCount();         return _qualifiers.getCount();
Line 132 
Line 134 
  
     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      CIMParameter getParameter(Uint32 index);
     {  
         return ((CIMMethodRep*)this)->findParameter(name);  
     }  
   
     CIMParameter getParameter(Uint32 pos);  
  
     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;      void toXml(Buffer& out) const;
  
     virtual void print() const;      void toMof(Buffer& out) const;
  
     Boolean identical(const CIMMethodRep* x) const;     Boolean identical(const CIMMethodRep* x) const;
  
Line 174 
Line 173 
  
     CIMMethodRep(const CIMMethodRep& x);     CIMMethodRep(const CIMMethodRep& x);
  
     CIMMethodRep& operator=(const CIMMethodRep& x);      // This method is declared and made private so that the compiler does
       // not implicitly define a default copy constructor.
       CIMMethodRep& operator=(const CIMMethodRep& x)
       {
           //PEGASUS_ASSERT(0);
           return *this;
       }
  
     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.1  
changed lines
  Added in v.1.32.2.1

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2