]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/internal/jcr/PropertiesContentProvider.java
Clean internal package structure
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui.workbench / src / org / argeo / eclipse / ui / workbench / internal / jcr / PropertiesContentProvider.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.internal.jcr;
17
18 import java.util.Set;
19 import java.util.TreeSet;
20
21 import javax.jcr.Node;
22 import javax.jcr.Property;
23 import javax.jcr.PropertyIterator;
24 import javax.jcr.RepositoryException;
25
26 import org.argeo.ArgeoException;
27 import org.argeo.eclipse.ui.jcr.utils.JcrItemsComparator;
28 import org.eclipse.jface.viewers.IStructuredContentProvider;
29 import org.eclipse.jface.viewers.Viewer;
30
31 public class PropertiesContentProvider implements IStructuredContentProvider {
32 private static final long serialVersionUID = 5227554668841613078L;
33 private JcrItemsComparator itemComparator = new JcrItemsComparator();
34
35 public void dispose() {
36 }
37
38 public void inputChanged(Viewer viewer, Object oldInput, Object newInput) {
39 }
40
41 public Object[] getElements(Object inputElement) {
42 try {
43 if (inputElement instanceof Node) {
44 Set<Property> props = new TreeSet<Property>(itemComparator);
45 PropertyIterator pit = ((Node) inputElement).getProperties();
46 while (pit.hasNext())
47 props.add(pit.nextProperty());
48 return props.toArray();
49 }
50 return new Object[] {};
51 } catch (RepositoryException e) {
52 throw new ArgeoException("Cannot get element for " + inputElement,
53 e);
54 }
55 }
56 }