Package eu.simuline.util
Interface PathFinder.Callable
-
- Enclosing class:
- PathFinder
public static interface PathFinder.CallableTo be implemented by java classes to apply a filter to a path and give feedback whether this filter succeeded. This is analogous to passing a path to as shell command and reading back whether the command succeeded. This interface should be used to define aPathFinder.ExecJavaFilter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancall(Path path)Applies some filter on the given path and returns whether the called operation succeeded.
-
-
-
Method Detail
-
call
boolean call(Path path)
Applies some filter on the given path and returns whether the called operation succeeded.
-
-