graph.gui.GraphOverlay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-compiler Show documentation
Show all versions of astra-compiler Show documentation
Core compiler artifact for the ASTRA Language
package graph.gui;
import graph.core.Edge;
import graph.core.Vertex;
import java.awt.Color;
@SuppressWarnings("rawtypes")
public interface GraphOverlay {
public Color edgeColor(Edge edge);
public Color vertexColor(Vertex vertex);
}