com.github.janssk1.maven.plugin.graph.GraphSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-dependencygraph-plugin Show documentation
Show all versions of maven-dependencygraph-plugin Show documentation
Generates a dependency graph in graphml format
package com.github.janssk1.maven.plugin.graph;
import com.github.janssk1.maven.plugin.graph.graph.Graph;
import java.io.IOException;
import java.io.Writer;
/**
* User: janssk1
* Date: 10/5/11
* Time: 12:24 PM
*/
public interface GraphSerializer {
void serialize(Graph graph, Writer writer) throws IOException;
}