Public Member Functions | |
| def | __repr__ (self) |
| def | __setstate__ (self, state) |
Customize attribute updating when using the copy module. More... | |
| def | __unicode__ (self) |
| def | copy (self, **attributes) |
| Return shallow copy of this object. More... | |
| def | deepcopy (self, **attributes) |
| Return deep copy of this object. More... | |
Static Private Attributes | |
| list | __slots__ = [] |
Definition at line 22 of file modelobject.py.
| def robotide.lib.robot.model.modelobject.ModelObject.__repr__ | ( | self | ) |
Definition at line 62 of file modelobject.py.
| def robotide.lib.robot.model.modelobject.ModelObject.__setstate__ | ( | self, | |
| state | |||
| ) |
Customize attribute updating when using the copy module.
This may not be needed in the future if we fix the mess we have with
different timeout types.
Definition at line 70 of file modelobject.py.
| def robotide.lib.robot.model.modelobject.ModelObject.__unicode__ | ( | self | ) |
Reimplemented in robotide.lib.robot.model.message.Message.
Definition at line 59 of file modelobject.py.
| def robotide.lib.robot.model.modelobject.ModelObject.copy | ( | self, | |
| ** | attributes | ||
| ) |
Return shallow copy of this object.
:param attributes: Attributes to be set for the returned copy
automatically. For example, ``test.copy(name='New name')``.
See also :meth:`deepcopy`. The difference between these two is the same
as with the standard ``copy.copy`` and ``copy.deepcopy`` functions
that these methods also use internally.
New in Robot Framework 3.0.1.
Definition at line 36 of file modelobject.py.
| def robotide.lib.robot.model.modelobject.ModelObject.deepcopy | ( | self, | |
| ** | attributes | ||
| ) |
Return deep copy of this object.
:param attributes: Attributes to be set for the returned copy
automatically. For example, ``test.deepcopy(name='New name')``.
See also :meth:`copy`. The difference between these two is the same
as with the standard ``copy.copy`` and ``copy.deepcopy`` functions
that these methods also use internally.
New in Robot Framework 3.0.1.
Definition at line 53 of file modelobject.py.
|
staticprivate |
Definition at line 23 of file modelobject.py.