ValueWrapper.java

15 lines | 271 B Blame History Raw Download
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();
}