]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - server/plugins/org.argeo.jcr.ui.explorer/src/main/java/org/argeo/jcr/ui/explorer/editors/GenericNodeEditor.java
Add dep folder
[lgpl/argeo-commons.git] / server / plugins / org.argeo.jcr.ui.explorer / src / main / java / org / argeo / jcr / ui / explorer / editors / GenericNodeEditor.java
index 4510ea3fcfac769656bb6b78fae5e0dfd45c9ecc..57f3aa236786cdcc171a52990d848cf27f7a2121 100644 (file)
@@ -1,9 +1,22 @@
+/*
+ * Copyright (C) 2007-2012 Argeo GmbH
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.argeo.jcr.ui.explorer.editors;
 
 import javax.jcr.Node;
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
 import org.argeo.ArgeoException;
 import org.argeo.jcr.JcrUtils;
 import org.argeo.jcr.ui.explorer.JcrExplorerPlugin;
@@ -14,43 +27,61 @@ import org.eclipse.ui.PartInitException;
 import org.eclipse.ui.forms.editor.FormEditor;
 
 /**
- * Parent Abstract GR multitab editor. Insure the presence of a GrBackend
+ * Container for the node editor page. At creation time, it takes a JCR Node
+ * that cannot be changed afterwards.
  */
 public class GenericNodeEditor extends FormEditor {
 
-       private final static Log log = LogFactory.getLog(GenericNodeEditor.class);
-       public final static String ID = "org.argeo.jcr.ui.explorer.genericNodeEditor";
+       // private final static Log log =
+       // LogFactory.getLog(GenericNodeEditor.class);
+       public final static String ID = JcrExplorerPlugin.ID + ".genericNodeEditor";
 
        private Node currentNode;
 
-       private GenericNodePage networkDetailsPage;
+       private GenericPropertyPage genericPropertyPage;
+       private ChildNodesPage childNodesPage;
+       private NodeRightsManagementPage nodeRightsManagementPage;
+       private NodeVersionHistoryPage nodeVersionHistoryPage;
 
        public void init(IEditorSite site, IEditorInput input)
                        throws PartInitException {
                super.init(site, input);
                GenericNodeEditorInput nei = (GenericNodeEditorInput) getEditorInput();
+               currentNode = nei.getCurrentNode();
                this.setPartName(JcrUtils.lastPathElement(nei.getPath()));
        }
 
        @Override
        protected void addPages() {
-               EmptyNodePage enp = new EmptyNodePage(this, "Empty node page");
                try {
-                       addPage(enp);
-               } catch (PartInitException e) {
-                       throw new ArgeoException("Not able to add an empty page ", e);
-               }
-       }
+                       // genericNodePage = new GenericNodePage(this,
+                       // JcrExplorerPlugin.getMessage("genericNodePageTitle"),
+                       // currentNode);
+                       // addPage(genericNodePage);
 
-       private void addPagesAfterNodeSet() {
-               try {
-                       networkDetailsPage = new GenericNodePage(this,
+                       genericPropertyPage = new GenericPropertyPage(this,
                                        JcrExplorerPlugin.getMessage("genericNodePageTitle"),
                                        currentNode);
-                       addPage(networkDetailsPage);
-                       this.setActivePage(networkDetailsPage.getIndex());
+                       addPage(genericPropertyPage);
+
+                       childNodesPage = new ChildNodesPage(this,
+                                       JcrExplorerPlugin.getMessage("childNodesPageTitle"),
+                                       currentNode);
+                       addPage(childNodesPage);
+
+                       nodeRightsManagementPage = new NodeRightsManagementPage(this,
+                                       JcrExplorerPlugin
+                                                       .getMessage("nodeRightsManagementPageTitle"),
+                                       currentNode);
+                       addPage(nodeRightsManagementPage);
+
+                       nodeVersionHistoryPage = new NodeVersionHistoryPage(
+                                       this,
+                                       JcrExplorerPlugin.getMessage("nodeVersionHistoryPageTitle"),
+                                       currentNode);
+                       addPage(nodeVersionHistoryPage);
                } catch (PartInitException e) {
-                       throw new ArgeoException("Not able to add page ", e);
+                       throw new ArgeoException("Not able to add an empty page ", e);
                }
        }
 
@@ -79,13 +110,4 @@ public class GenericNodeEditor extends FormEditor {
        Node getCurrentNode() {
                return currentNode;
        }
-
-       public void setCurrentNode(Node currentNode) {
-               boolean nodeWasNull = this.currentNode == null;
-               this.currentNode = currentNode;
-               if (nodeWasNull) {
-                       this.removePage(0);
-                       addPagesAfterNodeSet();
-               }
-       }
 }