tfw.visualizer.graph.Graph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tfw Show documentation
Show all versions of tfw Show documentation
The FrameWork for building highly scalable and maintainable applications
The newest version!
package tfw.visualizer.graph;
import java.io.IOException;
public interface Graph {
long nodesLength();
long edgesLength();
void get(
Object[] nodes,
int nodesOffset,
long nodesStart,
int nodesLength,
Object[] edgeFroms,
Object[] edgeTos,
int edgesOffset,
long edgesStart,
int edgesLength)
throws IOException;
}