mirror of
https://github.com/opentripplanner/OpenTripPlanner.git
synced 2026-04-03 15:26:08 +02:00
11 lines
310 B
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);
|
|
}
|