(cls)
| 74 | |
| 75 | @classmethod |
| 76 | def label(cls): |
| 77 | container = ifcopenshell.util.element.get_container(tool.Ifc.get_entity(bpy.context.active_object)) |
| 78 | if container: |
| 79 | label = f"{container.is_a()}/{container.Name or ''}" |
| 80 | if not cls.is_directly_contained(): |
| 81 | label += "*" |
| 82 | return label |
| 83 | |
| 84 | @classmethod |
| 85 | def references(cls) -> list[dict[str, Any]]: |
no test coverage detected