Home / aplcache / src / main / java / br / ufrgs / inf / prosoft / adaptivecaching / cachemanager / model / ValueWrapper.java
package br.ufrgs.inf.prosoft.adaptivecaching.cachemanager.model; /** * A (wrapper) object representing a model value. */ public interface ValueWrapper { /** * Return the actual value in the model. * * @return the object */ Object get(); }