Browse Source

ajout getter

prieto 9 years ago
parent
commit
7fe080eb38
1 changed files with 9 additions and 1 deletions
  1. 9
    1
      lodel/editorial_model/components.py

+ 9
- 1
lodel/editorial_model/components.py View File

176
         ## @brief Stores the emclass that contains this field (set by EmClass.add_field() method)
176
         ## @brief Stores the emclass that contains this field (set by EmClass.add_field() method)
177
         self._emclass = None
177
         self._emclass = None
178
 
178
 
179
-    ## @warning Not complete !
179
+    ## @brief Returns data_handler_name attribute
180
+    def get_data_handler_name(self):
181
+        return copy.copy(self.data_handler_name)
182
+        
183
+    ## @brief Returns data_handler_cls attribute
184
+    def get_data_handler_cls(self):
185
+        return copy.copy(selfdata_handler_cls)
186
+    
187
+    # @warning Not complete !
180
     # @todo Complete the hash when data handlers becomes available
188
     # @todo Complete the hash when data handlers becomes available
181
     def d_hash(self):
189
     def d_hash(self):
182
         return int.from_bytes(hashlib.md5(
190
         return int.from_bytes(hashlib.md5(

Loading…
Cancel
Save