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

edu.uci.ics.jung.visualization.layout.LayoutEvent Maven / Gradle / Ivy

The newest version!
package edu.uci.ics.jung.visualization.layout;

import edu.uci.ics.jung.graph.Graph;

public class LayoutEvent {
	
	V vertex;
	Graph graph;

	public LayoutEvent(V vertex, Graph graph) {
		this.vertex = vertex;
		this.graph = graph;
	}
	public V getVertex() {
		return vertex;
	}
	public void setVertex(V vertex) {
		this.vertex = vertex;
	}
	public Graph getGraph() {
		return graph;
	}
	public void setGraph(Graph graph) {
		this.graph = graph;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy