Package CIM14 :: Package ENTSOE :: Package Topology :: Package Core :: Module IdentifiedObject' :: Class IdentifiedObject
[hide private]
[frames] | no frames]

Class IdentifiedObject

      object --+    
               |    
Element'.Element --+
                   |
                  IdentifiedObject
Known Subclasses:

This is a root class to provide common naming attributes for all classes needing naming attributes

Instance Methods [hide private]
 
__init__(self, name='', description='', *args, **kw_args)
Initialises a new 'IdentifiedObject' instance.

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

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

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, name='', description='', *args, **kw_args)
(Constructor)

 

Initialises a new 'IdentifiedObject' instance.

Parameters:
  • name - The name is a free text human readable name of the object. It may be non unique and may not correlate to a naming hierarchy.
  • description - The description is a free human readable text describing or naming the object. It may be non unique and may not correlate to a naming hierarchy.
Overrides: object.__init__