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

org.powerscala.property.ReadOnlyPropertyLense.scala Maven / Gradle / Ivy

The newest version!
package org.powerscala.property

/**
 * @author Matt Hicks 
 */
class ReadOnlyPropertyLense[T](property: Property[T]) extends ReadProperty[T] {
  override def apply() = property()

  def read = property.read
  def change = property.change
  def get = property.get
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy