Package CIM14 :: Module CombinedVersion' :: Class CombinedVersion
[hide private]
[frames] | no frames]

Class CombinedVersion

      object --+    
               |    
Element'.Element --+
                   |
                  CombinedVersion

The combined version denotes the versions of the subpackages that have been combined into the total CIIMmodel. This is a convenience instead of having to look at each subpackage.

Instance Methods [hide private]
 
__init__(self, version='', date='', *args, **kw_args)
Initialises a new 'CombinedVersion' instance.

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  _attr_types = {'date': <type 'str'>, 'version': <type 'str'>}
  _attrs = ['version', 'date']
  _defaults = {'date': '', 'version': ''}

Inherited from Element'.Element (private): _enums, _many_refs, _refs

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, version='', date='', *args, **kw_args)
(Constructor)

 

Initialises a new 'CombinedVersion' instance.

Parameters:
  • version - Form is IEC61970CIMXXvYY_IEC61968CIMXXvYY_combined where XX is the major CIM package version and the YY is the minor version, and different packages could have different major and minor versions. For example IEC61970CIM13v18_IEC61968CIM10v16_combined. Additional packages might be added in the future.
  • date - Form is YYYY-MM-DD for example for January 5, 2009 it is 2009-01-05.
Overrides: object.__init__