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

com.vmlens.trace.agent.bootstrap.interleave.normalized.GraphEdge Maven / Gradle / Ivy

package com.vmlens.trace.agent.bootstrap.interleave.normalized;

public class GraphEdge {
	final Position outgoingTarget;
	boolean deleted;

	public GraphEdge(Position outgoingTarget) {
		super();
		this.outgoingTarget = outgoingTarget;
	}

	@Override
	public String toString() {
		return "GraphEdge [outgoingTarget=" + outgoingTarget + ", deleted=" + deleted + "]";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy