use of org.opennms.features.topology.api.SelectionContext in project opennms by OpenNMS.
the class OSGiVerticesUpdateManagerTest method createContextWithVertRefIds.
private SelectionContext createContextWithVertRefIds(int... vertIds) {
SelectionContext context = new DefaultSelectionManager(createGraph());
List<VertexRef> vertices = createVertexRefsWithIds(vertIds);
context.setSelectedVertexRefs(vertices);
return context;
}
Aggregations