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

org.hisrc.jsonix.analysis.DependencyEdge Maven / Gradle / Ivy

There is a newer version: 2.3.9
Show newest version
package org.hisrc.jsonix.analysis;

public class DependencyEdge {

	private DependencyType type;

	public DependencyEdge(DependencyType type) {
		this.type = type;
	}

	public DependencyType getType() {
		return type;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy