override fun update()

in src/main/kotlin/com/netflix/dgs/plugin/provider/DgsProjectStructureProvider.kt [129:136]


    override fun update(presentation: PresentationData) {
        presentation.apply {
            val toolTip = children.mapNotNull { it.name }.joinToString(", ")
            val textAttributes = SimpleTextAttributes.REGULAR_ATTRIBUTES
            addText(ColoredFragment(text, toolTip, textAttributes))
            setIcon(theIcon)
        }
    }