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
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:
31 self
._slotConnection
0 = []
32 self
.slotConnection0
= [] if slotConnection0
is None else slotConnection0
35 self
.slot0
= [] if slot0
is None else slot0
37 super(ConnectionFrame
, self
).__init
__(*args
, **kw_args
)
43 _refs
= ["slotConnection0", "slot0"]
44 _many_refs
= ["slotConnection0", "slot0"]
46 def getslotConnection0(self
):
48 return self
._slotConnection
0
50 def setslotConnection0(self
, value
):
51 for x
in self
._slotConnection
0:
52 x
.connectionFrame0
= None
54 y
._connectionFrame
0 = self
55 self
._slotConnection
0 = 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
71 def setslot0(self
, value
):
73 x
.connectionFrame0
= None
75 y
._connectionFrame
0 = self
78 slot0
= property(getslot0
, setslot0
)
80 def addslot0(self
, *slot0
):
82 obj
.connectionFrame0
= self
84 def removeslot0(self
, *slot0
):
86 obj
.connectionFrame0
= None