p
fmv1992
package fmv1992
Package Members
- package scala_cli_parser
Provide a config file based CLI parsing library.
Provide a config file based CLI parsing library.
Steps to do that:
- Define your
.conf
file. See the syntax here (ParserConfigFile). - Get a CLI parser from the the conf parser (ParserConfigFile).
- Apply the CLI parser to a given command line flags.
Public entities:
- fmv1992.scala_cli_parser.conf.ParserConfigFile.
- Which outputs fmv1992.scala_cli_parser.cli.ParserCLI.
- Which uses fmv1992.scala_cli_parser.cli.ArgumentConf.
- Which uses ("private trait Argument escapes its defining scope as part of type...") fmv1992.scala_cli_parser.cli.Argument.
- Which ouputs fmv1992.scala_cli_parser.cli.ArgumentCLI.
- Which uses fmv1992.scala_cli_parser.cli.ArgumentConf.
- Which outputs fmv1992.scala_cli_parser.cli.ParserCLI.
- fmv1992.scala_cli_parser.ParseException (not really used at the moment).
- Define your