org.jungrapht.visualization.layout.util.synthetics.SyntheticSE Maven / Gradle / Ivy
The newest version!
package org.jungrapht.visualization.layout.util.synthetics;
/**
* an edge that is not in the original graph,
*
* @param edge type
*/
public class SyntheticSE extends SEI implements Synthetic {
public SyntheticSE() {
super(null);
}
@Override
public boolean equals(Object o) {
return this == o;
}
@Override
public int hashCode() {
return System.identityHashCode(this);
}
@Override
public String toString() {
return "SyntheticEdge{" + "edge=" + edge + '}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy