Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix recently opened workspaces not being saved#337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
code-asher merged 1 commit intomainfromasher/fix-recents
Dec 7, 2023
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,27 +4,51 @@ import com.intellij.openapi.components.BaseState
importcom.intellij.util.xmlb.annotations.Attribute

classRecentWorkspaceConnection(
coderWorkspaceHostname:String? =null,
projectPath:String? =null,
lastOpened:String? =null,
ideProductCode:String? =null,
ideBuildNumber:String? =null,
downloadSource:String? =null,
idePathOnHost:String? =null,
webTerminalLink:String? =null,
configDirectory:String? =null,
name:String? =null,
) : BaseState(), Comparable<RecentWorkspaceConnection> {
@get:Attribute
varcoderWorkspaceHostname:String? =null,
var coderWorkspaceHostname by string()
@get:Attribute
varprojectPath:String? =null,
var projectPath by string()
@get:Attribute
varlastOpened:String? =null,
var lastOpened by string()
@get:Attribute
varideProductCode:String? =null,
var ideProductCode by string()
@get:Attribute
varideBuildNumber:String? =null,
var ideBuildNumber by string()
@get:Attribute
vardownloadSource:String? =null,
var downloadSource by string()
@get:Attribute
varidePathOnHost:String? =null,
var idePathOnHost by string()
@get:Attribute
varwebTerminalLink:String? =null,
var webTerminalLink by string()
@get:Attribute
varconfigDirectory:String? =null,
var configDirectory by string()
@get:Attribute
varname:String? =null,
) : BaseState(), Comparable<RecentWorkspaceConnection> {
var name by string()

init {
this.coderWorkspaceHostname= coderWorkspaceHostname
this.projectPath= projectPath
this.lastOpened= lastOpened
this.ideProductCode= ideProductCode
this.ideBuildNumber= ideBuildNumber
this.downloadSource= downloadSource
this.idePathOnHost= idePathOnHost
this.webTerminalLink= webTerminalLink
this.configDirectory= configDirectory
this.name= name
}

overridefunequals(other:Any?):Boolean {
if (this=== other)returntrue
if (javaClass!= other?.javaClass)returnfalse
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp