示例#1
0
 def get_attributes_from_names_list(self,
                                    attribute_type_name_list,
                                    status=None,
                                    get_obj=False):
     from gattribute import GAttribute
     return GAttribute.get_triples_from_sub_type_list(
         self._id, attribute_type_name_list, status, get_obj)
示例#2
0
文件: node.py 项目: kedar2a/gstudio
 def get_attributes_from_names_list(self, attribute_type_name_list, status=None, get_obj=False):
     from gattribute import GAttribute
     return GAttribute.get_triples_from_sub_type_list(self._id, attribute_type_name_list, status, get_obj)
示例#3
0
 def get_attribute(self, attribute_type_name, status=None):
     from gattribute import GAttribute
     return GAttribute.get_triples_from_sub_type(self._id,
                                                 attribute_type_name,
                                                 status)
示例#4
0
文件: node.py 项目: kedar2a/gstudio
 def get_attribute(self, attribute_type_name, status=None):
     from gattribute import GAttribute
     return GAttribute.get_triples_from_sub_type(self._id, attribute_type_name, status)