]> git.argeo.org Git - lgpl/argeo-commons.git/blob - server/plugins/org.argeo.jcr.ui.explorer/src/main/java/org/argeo/jcr/ui/explorer/commands/OpenGenericNodeEditor.java
remove typo in comments
[lgpl/argeo-commons.git] / server / plugins / org.argeo.jcr.ui.explorer / src / main / java / org / argeo / jcr / ui / explorer / commands / OpenGenericNodeEditor.java
1 /*
2 * Copyright (C) 2007-2012 Mathieu Baudier
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.jcr.ui.explorer.commands;
17
18 import org.argeo.ArgeoException;
19 import org.argeo.eclipse.ui.jcr.editors.NodeEditorInput;
20 import org.argeo.jcr.ui.explorer.JcrExplorerConstants;
21 import org.argeo.jcr.ui.explorer.JcrExplorerPlugin;
22 import org.argeo.jcr.ui.explorer.editors.GenericNodeEditor;
23 import org.eclipse.core.commands.AbstractHandler;
24 import org.eclipse.core.commands.ExecutionEvent;
25 import org.eclipse.core.commands.ExecutionException;
26 import org.eclipse.ui.handlers.HandlerUtil;
27
28 /** Opens the generic node editor. */
29 public class OpenGenericNodeEditor extends AbstractHandler {
30 public final static String ID = JcrExplorerPlugin.ID + ".openGenericNodeEditor";
31
32 public Object execute(ExecutionEvent event) throws ExecutionException {
33 String path = event.getParameter(JcrExplorerConstants.PARAM_PATH);
34 try {
35 NodeEditorInput nei = new NodeEditorInput(path);
36 HandlerUtil.getActiveWorkbenchWindow(event).getActivePage()
37 .openEditor(nei, GenericNodeEditor.ID);
38 } catch (Exception e) {
39 throw new ArgeoException("Cannot open editor", e);
40 }
41 return null;
42 }
43
44 }