![JAR search and dependency download from the Maven repository](/logo.png)
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