edu.uci.ics.jung.visualization.renderers.CachingRenderer 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!
package edu.uci.ics.jung.visualization.renderers;
import java.awt.Shape;
import java.util.HashMap;
import java.util.Map;
public class CachingRenderer extends BasicRenderer {
protected Map edgeShapeMap = new HashMap();
protected Map vertexShapeMap = new HashMap();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy