Skip to content

Commit

Permalink
Move everything into a firsttool package
Browse files Browse the repository at this point in the history
  • Loading branch information
nrayburn-tech committed Sep 1, 2024
1 parent ab8c1f0 commit 7ec409d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.nrayburntech.toolexperiments.listeners
package com.github.nrayburntech.toolexperiments.firsttool.listeners

import com.intellij.openapi.application.ApplicationActivationListener
import com.intellij.openapi.diagnostic.thisLogger
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.github.nrayburntech.toolexperiments.services
package com.github.nrayburntech.toolexperiments.firsttool.services

import com.github.nrayburntech.toolexperiments.MyBundle
import com.intellij.openapi.components.Service
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.github.nrayburntech.toolexperiments.toolWindow
package com.github.nrayburntech.toolexperiments.firsttool.toolWindow

import com.github.nrayburntech.toolexperiments.MyBundle
import com.github.nrayburntech.toolexperiments.services.MyProjectService
import com.github.nrayburntech.toolexperiments.firsttool.services.MyProjectService
import com.intellij.openapi.components.service
import com.intellij.openapi.diagnostic.thisLogger
import com.intellij.openapi.project.Project
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
<resource-bundle>messages.MyBundle</resource-bundle>

<extensions defaultExtensionNs="com.intellij">
<toolWindow factoryClass="com.github.nrayburntech.toolexperiments.toolWindow.MyToolWindowFactory"
<toolWindow factoryClass="com.github.nrayburntech.toolexperiments.firsttool.toolWindow.MyToolWindowFactory"
id="MyToolWindow"/>
</extensions>

<applicationListeners>
<listener class="com.github.nrayburntech.toolexperiments.listeners.MyApplicationActivationListener"
<listener class="com.github.nrayburntech.toolexperiments.firsttool.listeners.MyApplicationActivationListener"
topic="com.intellij.openapi.application.ApplicationActivationListener"/>
</applicationListeners>
</idea-plugin>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.github.nrayburntech.toolexperiments

import com.github.nrayburntech.toolexperiments.services.MyProjectService
import com.github.nrayburntech.toolexperiments.firsttool.services.MyProjectService
import com.intellij.ide.highlighter.XmlFileType
import com.intellij.openapi.components.service
import com.intellij.psi.xml.XmlFile
Expand Down

0 comments on commit 7ec409d

Please sign in to comment.