LocalPathAndIndex findLocalPathAndIndex(final FEPoint fepoint) {
return (LocalPathAndIndex) fepathlist.executeOnEachPath(new CallBackWithReturn() {
public Object callback(Object o) {
FEPath fepath = (FEPath) o;
if (fepath.contains(fepoint)) {
return new LocalPathAndIndex(fepath, fepath.indexOf(fepoint));
}
return null;
}
});