com.supermap.services
Interface OptimalPathAnalysis.FindPathListener
-
- Enclosing class:
- OptimalPathAnalysis
public static interface OptimalPathAnalysis.FindPathListener
Description: creates the callback function for accepting analysis results
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
error(java.lang.String description)
If there are errors, calls the function and input error informationvoid
result(Point2Ds points)
If results are generated, calls the function and inputs analysis results
-
-
-
Method Detail
-
result
void result(Point2Ds points)
If results are generated, calls the function and inputs analysis results- Parameters:
points
- Point2Ds the collection of passing points.
-
error
void error(java.lang.String description)
If there are errors, calls the function and input error information- Parameters:
description
- String error information
-
-