blob: 8bcf283e4e5cfba253756276c9ec69815cff6895 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2012 IBM Corporation and others.
* All rights reserved. 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.bpel.ui.palette;
import org.eclipse.gef.Tool;
import org.eclipse.gef.palette.SelectionToolEntry;
/**
* See comments in BPELSelectionTool.handleFocusLost().
*/
public class BPELSelectionToolEntry extends SelectionToolEntry {
public BPELSelectionToolEntry() {
super();
}
public BPELSelectionToolEntry(String label) {
super(label);
}
public BPELSelectionToolEntry(String label, String shortDesc) {
super(label, shortDesc);
}
@Override
public Tool createTool() {
return new BPELSelectionTool();
}
}