This extension point allows contributions to the TerminalConsole for various types of connections. It associates an action id with a connection type and factory. Identifier for this action The connection type this Action applies to A class implementing IConsoleActionFactory to be called to create the Action <extension point="org.eclipse.remote.console.toolbar"> <action actionFactory="com.example.actions.MyActionFactory" connectionType="org.eclipse.remote.serial.core.connectionType" id="com.example.actions.MyAction"> </action> </extension> The value of the actionFactory attribute must implement the abstract class <code>org.eclipse.remote.console.ConsoleAction</code> The value of the connectionType attribute should reference the id of a connectionType under the org.eclipse.remote.core.remoteServices extension point. The package itself does not have any predefined toolbar contributions. /******************************************************************************* * Copyright (c) 2016 QNX Software Systems and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * QNX Software Systems - Initial API and implementation *******************************************************************************/