/* * Copyright (c) 2006, 2007 Borland Software Corporation. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Richard Gronback (Borland) - initial API and implementation */ package org.eclipse.gmf.examples.mindmap.rcp.edit.policies; import org.eclipse.gef.commands.Command; import org.eclipse.gef.editpolicies.GraphicalNodeEditPolicy; import org.eclipse.gef.requests.CreateConnectionRequest; import org.eclipse.gef.requests.ReconnectRequest; /** * @generated */ public class ThreadGraphicalNodeEditPolicy extends GraphicalNodeEditPolicy { /** * @generated */ protected Command getConnectionCreateCommand(CreateConnectionRequest request) { return null; } /** * @generated */ protected Command getConnectionCompleteCommand( CreateConnectionRequest request) { return null; } /** * @generated */ protected Command getReconnectSourceCommand(ReconnectRequest request) { return null; } /** * @generated */ protected Command getReconnectTargetCommand(ReconnectRequest request) { return null; } }