diff options
author | Johnathan Corgan <jcorgan@corganenterprises.com> | 2012-08-28 12:52:09 -0700 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2012-08-28 12:52:09 -0700 |
commit | 5892c29ee0509ff8aa226f14da524f7ec30f9654 (patch) | |
tree | 759624a4c9f9b5d6c2e2da13906be99aebf25152 /grc/python/Param.py | |
parent | 7adff515181de5cfbd7392d934cac9083a8a6a58 (diff) | |
parent | fc4d37062c46886d3bc1fb0b6c3626d779be4ecd (diff) |
Merge remote branch 'reynwar/comments_next' into next
Conflicts:
gr-digital/include/digital_constellation.h
gr-digital/python/bpsk.py
gr-digital/python/qpsk.py
Diffstat (limited to 'grc/python/Param.py')
-rw-r--r-- | grc/python/Param.py | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/grc/python/Param.py b/grc/python/Param.py index 2caca48024..b310468842 100644 --- a/grc/python/Param.py +++ b/grc/python/Param.py @@ -106,7 +106,9 @@ class Param(_Param, _GUIParam): def __repr__(self): """ Get the repr (nice string format) for this param. - @return the string representation + + Returns: + the string representation """ ################################################## # truncate helper method @@ -167,7 +169,9 @@ class Param(_Param, _GUIParam): def get_color(self): """ Get the color that represents this param's type. - @return a hex color code. + + Returns: + a hex color code. """ try: return { @@ -198,7 +202,9 @@ class Param(_Param, _GUIParam): If the parameter controls a port type, vlen, or nports, return part. If the parameter is an empty grid position, return part. These parameters are redundant to display in the flow graph view. - @return hide the hide property string + + Returns: + hide the hide property string """ hide = _Param.get_hide(self) if hide: return hide @@ -234,7 +240,9 @@ class Param(_Param, _GUIParam): def evaluate(self): """ Evaluate the value. - @return evaluated type + + Returns: + evaluated type """ self._init = True self._lisitify_flag = False @@ -435,7 +443,9 @@ class Param(_Param, _GUIParam): Convert the value to code. For string and list types, check the init flag, call evaluate(). This ensures that evaluate() was called to set the xxxify_flags. - @return a string representing the code + + Returns: + a string representing the code """ v = self.get_value() t = self.get_type() @@ -452,7 +462,11 @@ class Param(_Param, _GUIParam): def get_all_params(self, type): """ Get all the params from the flowgraph that have the given type. - @param type the specified type - @return a list of params + + Args: + type: the specified type + + Returns: + a list of params """ return sum([filter(lambda p: p.get_type() == type, block.get_params()) for block in self.get_parent().get_parent().get_enabled_blocks()], []) |