Fahad/CodeSamples/CompoundTypes.scala
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Thu, 25 Feb 2016 20:13:41 +0000
changeset 106 489dfa0d7ec9
parent 44 a751aa1ee4f7
permissions -rw-r--r--
more cleaning and moving unnessary stuff to the end

package Main

object CompoundClasses {
  trait Cloneable extends java.lang.Cloneable {
    override def clone(): Cloneable = { super.clone(); this }
  }

  trait Resetable {
    def reset: Unit
  }

  def cloneAndReset(obj: Cloneable with Resetable): Cloneable = {
    val cloned = obj.clone()
    obj.reset
    cloned
  }
}