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

com.deliveredtechnologies.rulebook.Referable Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package com.deliveredtechnologies.rulebook;

/**
 * An object with a reference to another object.
 */
public interface Referable {

  /**
   * Gets the object referred to.
   * @return  the object
   */
  T getValue();

  /**
   * Sets the object to be referred to.
   * @param obj the object
   */
  void setValue(T obj);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy