edu.uci.ics.jung.visualization.util.Caching Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jung-visualization Show documentation
Show all versions of jung-visualization Show documentation
Core visualization support for the JUNG project
The newest version!
/*
* 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 {
/**
* ititialize resources for a cache
*
*/
void init();
/**
* clear cache
*
*/
void clear();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy