/* * Copyright (C) 2006-2016 DLR, Germany * * All rights reserved * * http://www.rcenvironment.de/ */ package de.rcenvironment.core.command.spi; import java.util.Collection; /** * A plugin for handling one or more top-level commands (e.g. the "x" in "rce x ..."). * * @author Robert Mischke */ public interface CommandPlugin extends SingleCommandHandler { /** * @return a list of this plugin's contributions to the "help" command output */ Collection<CommandDescription> getCommandDescriptions(); }