111112113114115116117118119120121
/** * コマンドを登録 */ private void registerCommands(){ // Intro Commands commands.add(new HelpCommand()); // General Commands commands.add(new CopyCommand()); commands.add(new EditCommand()); commands.add(new TitleCommand());
197198199200201202203204205206
// 実行 return command.run(this, sender, args, commandLabel); } } // 有効コマンドなし ヘルプ表示 new HelpCommand().run(this, sender, args, commandLabel); return true; } return false; }