]> git.argeo.org Git - lgpl/argeo-commons.git/blob - OpenGenericJcrQueryEditor.java
20edc8c9f198948e71e870413f3e7578147ea51a
[lgpl/argeo-commons.git] / OpenGenericJcrQueryEditor.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.eclipse.ui.jcr.commands;
17
18 import org.argeo.eclipse.ui.jcr.editors.JcrQueryEditorInput;
19 import org.eclipse.core.commands.AbstractHandler;
20 import org.eclipse.core.commands.ExecutionEvent;
21 import org.eclipse.core.commands.ExecutionException;
22 import org.eclipse.ui.IWorkbenchPage;
23 import org.eclipse.ui.handlers.HandlerUtil;
24
25 /** Open a JCR query editor. */
26 public class OpenGenericJcrQueryEditor extends AbstractHandler {
27 private String editorId;
28
29 public Object execute(ExecutionEvent event) throws ExecutionException {
30 try {
31 JcrQueryEditorInput editorInput = new JcrQueryEditorInput("", null);
32 IWorkbenchPage activePage = HandlerUtil.getActiveWorkbenchWindow(
33 event).getActivePage();
34 activePage.openEditor(editorInput, editorId);
35 } catch (Exception e) {
36 throw new ExecutionException("Cannot open editor", e);
37 }
38 return null;
39 }
40
41 public void setEditorId(String editorId) {
42 this.editorId = editorId;
43 }
44
45 }