]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/jcr/internal/parts/JcrQueryEditorInput.java
Enhance privilege display to ease JCR privilege management
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui.workbench / src / org / argeo / eclipse / ui / workbench / jcr / internal / parts / JcrQueryEditorInput.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
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.workbench.jcr.internal.parts;
17
18 import javax.jcr.query.Query;
19
20 import org.eclipse.jface.resource.ImageDescriptor;
21 import org.eclipse.ui.IEditorInput;
22 import org.eclipse.ui.IPersistableElement;
23
24 public class JcrQueryEditorInput implements IEditorInput {
25 private final String query;
26 private final String queryType;
27
28 public JcrQueryEditorInput(String query, String queryType) {
29 this.query = query;
30 if (queryType == null)
31 this.queryType = Query.JCR_SQL2;
32 else
33 this.queryType = queryType;
34 }
35
36 public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
37 return null;
38 }
39
40 public boolean exists() {
41 return true;
42 }
43
44 public ImageDescriptor getImageDescriptor() {
45 return null;
46 }
47
48 public String getName() {
49 return query;
50 }
51
52 public IPersistableElement getPersistable() {
53 return null;
54 }
55
56 public String getToolTipText() {
57 return query;
58 }
59
60 public String getQuery() {
61 return query;
62 }
63
64 public String getQueryType() {
65 return queryType;
66 }
67
68 }