com.deliveredtechnologies.rulebook.Referable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rulebook-core Show documentation
Show all versions of rulebook-core Show documentation
A simple and intuitive rules abstraction for Java
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