com.github.aschet.spdx.licensecompat.graph.io.LicenseCompatGraphImporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spdx-license-compat Show documentation
Show all versions of spdx-license-compat Show documentation
A license compatibility graph implementation for SPDX license identifiers.
The newest version!
/**
* Copyright 2017 Thomas Ascher
* SPDX-License-Identifier: LGPL-3.0+
*/
package com.github.aschet.spdx.licensecompat.graph.io;
import org.jgrapht.ext.DOTImporter;
import com.github.aschet.spdx.licensecompat.graph.LicenseEdge;
import com.github.aschet.spdx.licensecompat.graph.LicenseVertex;
/**
* Imports a license compatibility graph from a DOT file.
*
* @author Thomas Ascher
*/
public class LicenseCompatGraphImporter extends DOTImporter {
/**
* Configures the importer.
*/
public LicenseCompatGraphImporter() {
super(new LicenseVertexProvider(), new LicenseEdgeProvider());
}
}