override fun updateText()

in intellij/src/main/kotlin/motif/intellij/hierarchy/descriptor/ScopeHierarchyRootErrorDescriptor.kt [33:39]


  override fun updateText(text: CompositeAppearance) {
    if (graph.errors.isEmpty()) {
      text.ending.addText("No Errors!")
    } else {
      text.ending.addText("" + graph.errors.size + " errors")
    }
  }