File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
package com.coder.gateway
2
2
3
- import com.coder.gateway.views.CoderGatewayConnectorView
3
+ import com.coder.gateway.views.CoderGatewayConnectorWizardWrapperView
4
4
import com.intellij.ui.IconManager
5
5
import com.intellij.ui.components.ActionLink
6
6
import com.intellij.ui.components.BrowserLink
@@ -10,12 +10,12 @@ import com.jetbrains.rd.util.lifetime.Lifetime
10
10
import javax.swing.Icon
11
11
import javax.swing.JComponent
12
12
13
- class CoderGatewayConnector : GatewayConnector {
13
+ class CoderGatewayMainView : GatewayConnector {
14
14
override val icon: Icon
15
15
get() = IconManager .getInstance().getIcon(" coder_logo.svg" , this ::class .java)
16
16
17
17
override fun createView (lifetime : Lifetime ): GatewayConnectorView {
18
- return CoderGatewayConnectorView ()
18
+ return CoderGatewayConnectorWizardWrapperView ()
19
19
}
20
20
21
21
override fun getActionText (): String {
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import kotlinx.coroutines.withContext
19
19
import java.awt.Component
20
20
import javax.swing.JButton
21
21
22
- class CoderGatewayLoginView : BorderLayoutPanel (), Disposable {
22
+ class CoderGatewayConnectorWizardView : BorderLayoutPanel (), Disposable {
23
23
private val cs = CoroutineScope (Dispatchers .Main )
24
24
private var steps = arrayListOf<CoderWorkspacesWizardStep >()
25
25
private var currentStep = 0
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import com.intellij.util.ui.JBUI
5
5
import com.jetbrains.gateway.api.GatewayConnectorView
6
6
import javax.swing.JComponent
7
7
8
- class CoderGatewayConnectorView : GatewayConnectorView {
8
+ class CoderGatewayConnectorWizardWrapperView : GatewayConnectorView {
9
9
override val component: JComponent
10
- get() = Wrapper (CoderGatewayLoginView ()).apply { border = JBUI .Borders .empty() }
10
+ get() = Wrapper (CoderGatewayConnectorWizardView ()).apply { border = JBUI .Borders .empty() }
11
11
}
Original file line number Diff line number Diff line change 12
12
<applicationService serviceImplementation =" com.coder.gateway.sdk.CoderClientService" ></applicationService >
13
13
</extensions >
14
14
<extensions defaultExtensionNs =" com.jetbrains" >
15
- <gatewayConnector implementation =" com.coder.gateway.CoderGatewayConnector " />
15
+ <gatewayConnector implementation =" com.coder.gateway.CoderGatewayMainView " />
16
16
</extensions >
17
17
</idea-plugin >
You can’t perform that action at this time.
0 commit comments