commands property

  1. @override
Map<String, CliCommand> get commands
override

Defines a list of subcommands.

サブコマンドの一覧を定義します。

Implementation

@override
Map<String, CliCommand> get commands => const {
      "listform": CodeViewListFormCliCommand(),
      "fixedform": CodeViewFixedFormCliCommand(),
      "listform_add": CodeViewListFormAddCliCommand(),
      "fixedform_add": CodeViewFixedFormAddCliCommand(),
      "listform_edit": CodeViewListFormEditCliCommand(),
      "fixedform_edit": CodeViewFixedFormEditCliCommand(),
      "tab": CodeViewTabCliCommand(),
      "navigation": CodeViewNavigationCliCommand(),
      "listview": CodeViewListViewCliCommand(),
      "gridview": CodeViewGridViewCliCommand(),
      "fixedview": CodeViewFixedViewCliCommand(),
      "page": CodeViewPageCliCommand(),
    };