public boolean setLocation(Location location, Iterable<? extends File> path) {
   try {
     getStdManager().setLocation(location, path);
   } catch (IOException e) {
     myContext.reportMessage(Diagnostic.Kind.ERROR, e.getMessage());
     return false;
   }
   return true;
 }