summaryrefslogtreecommitdiff
path: root/src/swing/scala/swing/ToggleButton.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/swing/scala/swing/ToggleButton.scala')
-rw-r--r--src/swing/scala/swing/ToggleButton.scala22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/swing/scala/swing/ToggleButton.scala b/src/swing/scala/swing/ToggleButton.scala
deleted file mode 100644
index 8f210d00d8..0000000000
--- a/src/swing/scala/swing/ToggleButton.scala
+++ /dev/null
@@ -1,22 +0,0 @@
-/* __ *\
-** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2007-2013, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
-** /____/\___/_/ |_/____/_/ | | **
-** |/ **
-\* */
-
-package scala.swing
-
-import javax.swing._
-
-/**
- * A two state button with a push button like user interface.
- * Usually used in tool bars.
- *
- * @see javax.swing.JToggleButton
- */
-class ToggleButton(text0: String) extends AbstractButton {
- override lazy val peer: JToggleButton = new JToggleButton(text0) with SuperMixin
- def this() = this("")
-}