summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/support/tlcockpit/src/main/scala/TeXLive/TLPackage.scala
blob: cb9d8c7e88e4b025947f738a70b85c9db0541556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package TeXLive

import scalafx.beans.property.StringProperty
import scalafx.beans.property.IntegerProperty
import scalafx.beans.property.BooleanProperty

class TLPackage(name_ : String, lrev_ : String, rrev_ : String, shortdesc_ : String, size_ : String, installed_ : String) {
  val name = new StringProperty(this, "name", name_)
  val shortdesc = new StringProperty(this, "shortdesc", shortdesc_)
  val lrev = new StringProperty(this, "revision", lrev_)
  val rrev = new StringProperty(this, "revision", rrev_)
  val size = new StringProperty(this, "size", size_)
  val installed = new StringProperty(this, "installed", installed_)
}