|
|
|
|
36
|
# @note Wrapped methods are : LeObject.data() & LeObject.set_data()
|
36
|
# @note Wrapped methods are : LeObject.data() & LeObject.set_data()
|
37
|
class LeObjectValues(object):
|
37
|
class LeObjectValues(object):
|
38
|
|
38
|
|
39
|
- ## @brief Constructs a new LeObjectValues
|
|
|
40
|
# @param fieldnames_callback method
|
39
|
# @param fieldnames_callback method
|
41
|
# @param set_callback method : The LeObject.set_datas() method of corresponding LeObject class
|
40
|
# @param set_callback method : The LeObject.set_datas() method of corresponding LeObject class
|
42
|
# @param get_callback method : The LeObject.get_datas() method of corresponding LeObject class
|
41
|
# @param get_callback method : The LeObject.get_datas() method of corresponding LeObject class
|
|
|
|
|
95
|
self.__set_initialized()
|
94
|
self.__set_initialized()
|
96
|
return self
|
95
|
return self
|
97
|
|
96
|
|
98
|
- ## @brief Constructs an object representing an Editorial component
|
|
|
99
|
# @note Can be considered as EmClass instance
|
97
|
# @note Can be considered as EmClass instance
|
100
|
# @param **kwargs
|
98
|
# @param **kwargs
|
101
|
# @throw NotImplementedError when the class being instanciated is noted as abstract and then should not be instanciated.
|
99
|
# @throw NotImplementedError when the class being instanciated is noted as abstract and then should not be instanciated.
|