blob: 47ba447b9d0e0ac6eeb7e15c8d1b02ac6b8da9dc [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.jaxb.ui.internal.handlers;
import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.resources.IFile;
import org.eclipse.jface.viewers.IStructuredSelection;
import org.eclipse.jpt.jaxb.ui.internal.ClassesGeneratorUi;
import org.eclipse.ui.handlers.HandlerUtil;
/**
* GenerateClassesHandler
*/
public class GenerateClassesHandler extends AbstractHandler
{
public Object execute(ExecutionEvent event) throws ExecutionException {
// There is always only one element in the actual selection.
IStructuredSelection selection = (IStructuredSelection)HandlerUtil.getCurrentSelectionChecked(event);
IFile xsdFile = this.buildXsdFile(selection.getFirstElement());
if(xsdFile != null) {
ClassesGeneratorUi.generate(xsdFile);
}
return null;
}
private IFile buildXsdFile(Object selection) {
if (selection instanceof IFile) {
return (IFile) selection;
}
return null;
}
}