X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=org.simantics.district.route%2Fsrc%2Forg%2Fsimantics%2Fdistrict%2Froute%2FRouter.java;h=5f73c9679b12d5b388c5ad6d1694a2d7dee4935d;hb=refs%2Fheads%2Fprivate%2Fpsaas;hp=1d2423221440b43706e5b8336949b2718c7412d7;hpb=716ce6c9abe27be04635922ad437f242c4bd7dfc;p=simantics%2Fdistrict.git diff --git a/org.simantics.district.route/src/org/simantics/district/route/Router.java b/org.simantics.district.route/src/org/simantics/district/route/Router.java index 1d242322..5f73c967 100644 --- a/org.simantics.district.route/src/org/simantics/district/route/Router.java +++ b/org.simantics.district.route/src/org/simantics/district/route/Router.java @@ -3,7 +3,6 @@ package org.simantics.district.route; import java.util.List; import org.simantics.db.Resource; -import org.simantics.db.layer0.variable.Variable; /** * @author Tuukka Lehtonen @@ -20,13 +19,14 @@ public interface Router { /** * Must be invoked outside of any transaction realm, like a database request or * experiment thread, preferably from a background job thread. - * + * + * @param config reserved for future use, may be null * @param wayPoints waypoints for the route to find in visiting order. The * resources must represents district network diagram elements. * @return the piece-wise shortest path between the specified waypoints as a * fully baked path of district network diagram element resources * @throws RoutingException in case of any problems in routing */ - List findShortestPath(RouterConfiguration config, List wayPoints) throws RoutingException; + List findShortestPath(RouterConfiguration config, List wayPoints) throws RoutingException; }