override fun createToolWindowContent()

in src/main/kotlin/org/jetbrains/plugins/template/toolWindow/MyToolWindowFactory.kt [22:26]


    override fun createToolWindowContent(project: Project, toolWindow: ToolWindow) {
        val myToolWindow = MyToolWindow(toolWindow)
        val content = ContentFactory.getInstance().createContent(myToolWindow.getContent(), null, false)
        toolWindow.contentManager.addContent(content)
    }