blob: 588f0b37abbf3566a9f2df7bc96457501b13810e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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 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
*******************************************************************************/
package org.eclipse.bpel.examples.extensionpoints.palette;
import org.eclipse.bpel.model.BPELPackage;
import org.eclipse.bpel.ui.factories.UIObjectFactoryProvider;
import org.eclipse.bpel.ui.util.BPELCreationToolEntry;
/**
* @author Michal Chmielewski (michal.chmielewski@oracle.com)
* @date May 21, 2007
*
*/
public class ExitToolEntry extends BPELCreationToolEntry {
/**
* Use the default constructor.
*/
static UIObjectFactoryProvider fProvider = UIObjectFactoryProvider.getInstance();
/**
*
*/
public ExitToolEntry () {
super("Exit", "Exit Activity", fProvider.getFactoryFor(BPELPackage.eINSTANCE.getExit()) );
}
}