(**kwargs)
| 174 | |
| 175 | @staticmethod |
| 176 | def intvector(**kwargs): |
| 177 | attrs = {"type": "IntVectorProperty"} |
| 178 | attrs.update(kwargs) |
| 179 | return _create_decorator(attrs, |
| 180 | update_func=smproperty._update_vectorproperty_defaults, |
| 181 | generate_xml_func=smproperty._generate_xml) |
| 182 | |
| 183 | @staticmethod |
| 184 | def doublevector(**kwargs): |
nothing calls this directly
no test coverage detected