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

org.codetracker.api.Graph Maven / Gradle / Ivy

Go to download

A refactoring-aware tool that can generate the commit change history of code elements with a very high accuracy.

There is a newer version: 2.6
Show newest version
package org.codetracker.api;

import com.google.common.graph.EndpointPair;

import java.util.Optional;
import java.util.Set;

public interface Graph {

    Set getNodeList();

    Set> getEdges();

    Optional getEdgeValue(EndpointPair e);

    Set predecessors(N n);

    Set successors(N n);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy