in src/main/kotlin/com/netflix/dgs/plugin/provider/DgsProjectStructureProvider.kt [57:65]
override fun update(presentation: PresentationData) {
presentation.apply {
val text = "DGS Components"
val toolTip = children.mapNotNull { it.name }.joinToString(", ")
val textAttributes = SimpleTextAttributes.REGULAR_ATTRIBUTES
addText(ColoredFragment(text, toolTip, textAttributes))
setIcon(DgsConstants.dgsIcon)
}
}