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

org.powerscala.property.backing.VariableBacking.scala Maven / Gradle / Ivy

The newest version!
package org.powerscala.property.backing

/**
 * VariableBacking utilizes a standard var for the backing store.
 *
 * @author Matt Hicks 
 */
class VariableBacking[T] extends Backing[T] {
  private var v: T = _

  final def getValue = v

  final def setValue(value: T) {
    this.v = value
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy