Fixing website and API documentation links
[PyCIM.git] / CIM14 / IEC61970 / Dynamics / ConnectionFrame.py
blob97afa696ee64fa0dead7bebc80162aae27e8dcc9
1 # Copyright (C) 2010-2011 Richard Lincoln
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to
5 # deal in the Software without restriction, including without limitation the
6 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7 # sell copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19 # IN THE SOFTWARE.
21 from CIM14.IEC61970.Core.IdentifiedObject import IdentifiedObject
23 class ConnectionFrame(IdentifiedObject):
25 def __init__(self, slotConnection0=None, slot0=None, *args, **kw_args):
26 """Initialises a new 'ConnectionFrame' instance.
28 @param slotConnection0:
29 @param slot0:
30 """
31 self._slotConnection0 = []
32 self.slotConnection0 = [] if slotConnection0 is None else slotConnection0
34 self._slot0 = []
35 self.slot0 = [] if slot0 is None else slot0
37 super(ConnectionFrame, self).__init__(*args, **kw_args)
39 _attrs = []
40 _attr_types = {}
41 _defaults = {}
42 _enums = {}
43 _refs = ["slotConnection0", "slot0"]
44 _many_refs = ["slotConnection0", "slot0"]
46 def getslotConnection0(self):
48 return self._slotConnection0
50 def setslotConnection0(self, value):
51 for x in self._slotConnection0:
52 x.connectionFrame0 = None
53 for y in value:
54 y._connectionFrame0 = self
55 self._slotConnection0 = value
57 slotConnection0 = property(getslotConnection0, setslotConnection0)
59 def addslotConnection0(self, *slotConnection0):
60 for obj in slotConnection0:
61 obj.connectionFrame0 = self
63 def removeslotConnection0(self, *slotConnection0):
64 for obj in slotConnection0:
65 obj.connectionFrame0 = None
67 def getslot0(self):
69 return self._slot0
71 def setslot0(self, value):
72 for x in self._slot0:
73 x.connectionFrame0 = None
74 for y in value:
75 y._connectionFrame0 = self
76 self._slot0 = value
78 slot0 = property(getslot0, setslot0)
80 def addslot0(self, *slot0):
81 for obj in slot0:
82 obj.connectionFrame0 = self
84 def removeslot0(self, *slot0):
85 for obj in slot0:
86 obj.connectionFrame0 = None