Migrate from the deprecated FrameStateListener.onFrameActivated() to ApplicationActivationListener.applicationActivated(IdeFrame)

This commit is contained in:
Jakub Chrzanowski
2023-06-02 12:35:39 +02:00
committed by Jakub Chrzanowski
parent a73b073f2e
commit d22a737277
4 changed files with 13 additions and 8 deletions

View File

@@ -218,13 +218,13 @@ Therefore, the template contains only the following files:
```
.
├── MyBundle.kt Bundle class providing access to the resources messages
├── MyBundle.kt Bundle class providing access to the resources messages
├── listeners
│ └── MyFrameStateListener.kt Frame state listener — detects when IDE frame is opened/closed
│ └── MyApplicationActivationListener.kt Application activation listener — detects when IDE frame is activated
├── services
│ └── MyProjectService.kt Project level service
│ └── MyProjectService.kt Project level service
├── toolWindow
│ └── MyToolWindowFactory.kt Tool window factory — creates tool window content
│ └── MyToolWindowFactory.kt Tool window factory — creates tool window content
```