Skip to content

Instantly share code, notes, and snippets.

@voronaam
voronaam / MutableComboBox.scala
Last active February 24, 2022 23:32
Mutable ComboBox for Scala Swing
import scala.swing.{ Component, Swing, event }
import javax.swing.JComboBox
/**
* Very basic Mutable ComboBox for Scala.
* <p>Sample usage:<p>
* <pre>
* val box = new MutableComboBox[String]
* box.items = List("1", "11", "222")
* listenTo(box)