org.hisrc.jsonix.analysis.DependencyEdge Maven / Gradle / Ivy
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