Skip to content
Snippets Groups Projects
Commit e8060144 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Add icon and category to plugin

parent 1c703b16
Branches
No related tags found
No related merge requests found
...@@ -14,8 +14,10 @@ import com.j256.ormlite.table.DatabaseTable ...@@ -14,8 +14,10 @@ import com.j256.ormlite.table.DatabaseTable
@DatabaseField var path: String = _ @DatabaseField var path: String = _
@DatabaseField var version: String = _ @DatabaseField var version: String = _
@DatabaseField var build: Int = _ @DatabaseField var build: Int = _
@DatabaseField var icon: String = _
@DatabaseField var category: String = _
def this(name: String, displayName: String, path: String, description: String, version: String, build: Int) { def this(name: String, displayName: String, path: String, description: String, version: String, build: Int, icon: String, category: String) {
this() this()
this.name = name this.name = name
this.displayName = displayName this.displayName = displayName
...@@ -23,6 +25,8 @@ import com.j256.ormlite.table.DatabaseTable ...@@ -23,6 +25,8 @@ import com.j256.ormlite.table.DatabaseTable
this.description = description this.description = description
this.version = version this.version = version
this.build = build this.build = build
this.icon = icon
this.category = category
} }
def getId: Int = id def getId: Int = id
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment