OpenTripPlanner/application/src/main/java/org/opentripplanner/visualizer/VertexSelectionListener.java

11 lines
310 B
Java

package org.opentripplanner.visualizer;
import java.util.List;
import org.opentripplanner.street.model.vertex.Vertex;
/**
* An interface allowing a map UI element to report that the user has selected vertices.
*/
public interface VertexSelectionListener {
void verticesSelected(List<Vertex> selected);
}