All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scalaswingcontrib.CellEditor.scala Maven / Gradle / Ivy

The newest version!
package scalaswingcontrib

import scala.swing.Publisher

/**
* Common superclass of cell editors.
* @author Ken Scambler
*/
trait CellEditor[+A] extends Publisher {
  def peer: AnyRef
  def value: A
  def cellEditable: Boolean
  def shouldSelectCell: Boolean
  def cancelCellEditing(): Unit
  def stopCellEditing(): Boolean
}






© 2015 - 2025 Weber Informatics LLC | Privacy Policy