|
|
|||
File indexing completed on 2026-04-09 07:58:22
0001 0002 0003 class TestProperty: 0004 0005 def __init__(self): 0006 # @self.IDDSProperty 0007 pass 0008 0009 def IDDSProperty(attribute): 0010 def _get(self, attribute): 0011 self.get_metadata_item(attribute, None) 0012 0013 def _set(self, attribute, value): 0014 self.add_metadata_item(attribute, value) 0015 0016 attribute = property(_get, _set) 0017 return attribute
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|