(self)
| 338 | self._workspace = workspace |
| 339 | |
| 340 | def clone(self): |
| 341 | cls = type(self) |
| 342 | cloned_plugin = cls.__new__(cls) |
| 343 | super(cls, cloned_plugin).__init__() |
| 344 | cloned_plugin.__dict__.update(self._get_dict_to_serialize()) |
| 345 | return cloned_plugin |
| 346 | |
| 347 | def get_capability_interface(self, type): |
| 348 | return self |