parseIceCommandLineOptions method

  1. @override
StringSeq parseIceCommandLineOptions(
  1. StringSeq options
)
override

Convert a sequence of command-line options into properties. All options that begin with one of the following prefixes are converted into properties: --Ice, --IceBox, --IceGrid, --IcePatch2, --IceSSL, --IceStorm, --Freeze, and --Glacier2. @param options The command-line options. @return The command-line options that do not start with one of the listed prefixes, in their original order.

Implementation

@override
StringSeq parseIceCommandLineOptions(StringSeq options) {
  var args = options; // TODO: copy
  clPropNames.forEach((prefix) {
    args = parseCommandLineOptions(prefix, args);
  });
  return args;
}