edu.uci.ics.jung.visualization.util.Caching Maven / Gradle / Ivy
/*
* Copyright (c) 2005, The JUNG Authors
* All rights reserved.
*
* This software is open-source under the BSD license; see either "license.txt"
* or https://github.com/jrtom/jung/blob/master/LICENSE for a description.
*
*
*/
package edu.uci.ics.jung.visualization.util;
/**
* Interface to provide external controls to an implementing class that manages a cache.
*
* @author Tom Nelson - [email protected]
*/
public interface Caching {
/** clear cache */
void clear();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy