edu.uci.ics.jung.visualization.layout.LayoutEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jung-visualization Show documentation
Show all versions of jung-visualization Show documentation
Core visualization support for the JUNG project
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