/* * Copyright (C) 2006-2016 DLR, Germany * * All rights reserved * * http://www.rcenvironment.de/ */ package de.rcenvironment.core.gui.communication.views; import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionException; /** * Handler for manually adding network connections. * * @author Oliver Seebach * */ public class AddNetworkConnectionHandler extends AbstractHandler { @Override public Object execute(ExecutionEvent event) throws ExecutionException { // Add network connection here return null; } }