blob: ee642c8855b08282bfa85befd584c2b1ad1f6896 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.eclipselink.ui.internal.handlers;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.Command;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jpt.jpa.eclipselink.ui.internal.wizards.EclipseLinkDynamicEntityWizard;
import org.eclipse.jpt.jpa.ui.internal.handlers.NewEntityHandler.OpenJptWizardAction;
import org.eclipse.ui.INewWizard;
/**
* NewDynamicEntityHandler
*/
public class NewDynamicEntityHandler extends AbstractHandler
{
public Object execute(ExecutionEvent event) throws ExecutionException {
Command command = event.getCommand();
OpenJptWizardAction openJptWizardAction = new OpenDynamicEntityWizardAction(command);
openJptWizardAction.run();
return null;
}
// ********** OpenDynamicEntityWizardAction **********
public static class OpenDynamicEntityWizardAction extends OpenJptWizardAction {
public OpenDynamicEntityWizardAction(Command command) {
super(command);
}
@Override
protected INewWizard createWizard() throws CoreException {
return new EclipseLinkDynamicEntityWizard(null);
}
}
}