xarconverter
converter
node
box_content.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
3
6
7
""" Contains a class that holds diagram informations
8
.. module:: node
9
"""
10
11
import
converter.node
as
node
12
13
14
class
BoxContent
(
node.Node
):
15
""" Stores informations about Box implementation, a content
16
of the Box Interface
17
"""
18
19
def
__init__
(self, attrs):
20
super(BoxContent, self).
__init__
(
"BoxContent"
)
21
22
self.
content_type
= attrs.getValue(
"type"
)
23
self.
path
= attrs.getValue(
"path"
)
24
self.
checksum
= attrs.getValue(
"checksum"
)
25
26
self.
impl
=
None
27
28
def
beacon
(self):
29
return
"Content"
converter.node.box_content.BoxContent.__init__
def __init__(self, attrs)
Definition:
box_content.py:19
converter.node.box_content.BoxContent
Definition:
box_content.py:14
converter.node
Definition:
xarconverter/converter/node/__init__.py:1
converter.node.box_content.BoxContent.beacon
def beacon(self)
Definition:
box_content.py:28
converter.node.box_content.BoxContent.impl
impl
Definition:
box_content.py:26
converter.node.box_content.BoxContent.content_type
content_type
Definition:
box_content.py:22
converter.node.box_content.BoxContent.path
path
Definition:
box_content.py:23
converter.node.box_content.BoxContent.checksum
checksum
Definition:
box_content.py:24
converter.node.Node
Definition:
xarconverter/converter/node/__init__.py:12
naoqi_libqicore
Author(s): Aldebaran
autogenerated on Wed Sep 14 2022 02:22:41