/**
  * Saves a node to file.
  *
  * @param fileLocation Location in String format.
  * @return True if successful, false otherwise.
  */
 public boolean saveNodeList(String fileLocation) {
   return fileManager.saveXMLFile(nodeManager.getNodeList(), fileLocation);
 }