All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tfw.visualizer.graph.Graph Maven / Gradle / Ivy

Go to download

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy