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

com.github.aschet.spdx.licensecompat.graph.io.LicenseCompatGraphImporter Maven / Gradle / Ivy

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy