Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.xsd.ui/src-refactor/org/eclipse/wst/xsd/ui/internal/refactor/handlers/RefactoringHandler.java')
-rw-r--r--bundles/org.eclipse.wst.xsd.ui/src-refactor/org/eclipse/wst/xsd/ui/internal/refactor/handlers/RefactoringHandler.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/bundles/org.eclipse.wst.xsd.ui/src-refactor/org/eclipse/wst/xsd/ui/internal/refactor/handlers/RefactoringHandler.java b/bundles/org.eclipse.wst.xsd.ui/src-refactor/org/eclipse/wst/xsd/ui/internal/refactor/handlers/RefactoringHandler.java
deleted file mode 100644
index bbe02fc7ea..0000000000
--- a/bundles/org.eclipse.wst.xsd.ui/src-refactor/org/eclipse/wst/xsd/ui/internal/refactor/handlers/RefactoringHandler.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010 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.wst.xsd.ui.internal.refactor.handlers;
-
-import org.eclipse.core.commands.AbstractHandler;
-import org.eclipse.core.commands.ExecutionEvent;
-import org.eclipse.core.commands.ExecutionException;
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.ui.IEditorPart;
-import org.eclipse.ui.IWorkbenchPage;
-import org.eclipse.ui.IWorkbenchWindow;
-import org.eclipse.ui.handlers.HandlerUtil;
-import org.eclipse.xsd.XSDSchema;
-
-public abstract class RefactoringHandler extends AbstractHandler
-{
- public Object execute(ExecutionEvent event) throws ExecutionException {
-
- IWorkbenchWindow workbenchWindow = HandlerUtil.getActiveWorkbenchWindow(event);
- if (workbenchWindow == null) return null;
-
- IWorkbenchPage activePage = workbenchWindow.getActivePage();
- if (activePage == null) return null;
-
- IEditorPart editor = activePage.getActiveEditor();
- if (editor == null) return null;
- XSDSchema schema = (XSDSchema)editor.getAdapter(XSDSchema.class);
-
- ISelection selection = activePage.getSelection();
-
- return doExecute(selection, schema);
- }
-
- protected abstract Object doExecute(ISelection selection, XSDSchema schema);
-}

Back to the top