/**
  * Parses the argument text into an array of individual strings using the space character as the
  * delimiter. An individual argument containing spaces must have a double quote (") at the start
  * and end. Two double quotes together is taken to mean an embedded double quote in the argument
  * text.
  *
  * @param arguments the arguments as one string
  * @return the array of arguments
  */
 public static String[] parseStringIntoList(String arguments) {
   return ProcessUtils.parseArguments(arguments);
 }