/******************************************************************************* * Copyright (c) 2000, 2010, 2012 IBM Corporation, Gerhardt Informatics Kft. and others. * 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: * IBM Corporation - initial API and implementation * Gerhardt Informatics Kft. - GEFGWT port *******************************************************************************/ package org.eclipse.gef.palette; import org.eclipse.gef.requests.CreationFactory; import org.eclipse.gef.tools.ConnectionCreationTool; import org.eclipse.jface.resource.ImageDescriptor; /** * A palette ToolEntry for a * {@link org.eclipse.gef.tools.ConnectionCreationTool}. * * @author hudsonr * @since 2.1 */ public class ConnectionCreationToolEntry extends CreationToolEntry { /** * Constructor for ConnectionCreationToolEntry. * * @param label * the label * @param shortDesc * the description * @param factory * the CreationFactory * @param iconSmall * the small icon * @param iconLarge * the large icon */ public ConnectionCreationToolEntry(String label, String shortDesc, CreationFactory factory, ImageDescriptor iconSmall, ImageDescriptor iconLarge) { super(label, shortDesc, factory, iconSmall, iconLarge); setToolClass(ConnectionCreationTool.class); setUserModificationPermission(PERMISSION_NO_MODIFICATION); } }