X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=server%2Fplugins%2Forg.argeo.jcr.ui.explorer%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fjcr%2Fui%2Fexplorer%2Feditors%2FGenericNodeEditor.java;h=e789e0b990ae4f4b6b8892dff42913d3306b81af;hb=9884b3225a86b831917b10376925eebcbf99e513;hp=f7e57c6cb7dc11fe0191b422f85fbba89d8acf2c;hpb=e20bb1ef1c9c03d5e704d1634f3c83a971d15df8;p=lgpl%2Fargeo-commons.git diff --git a/server/plugins/org.argeo.jcr.ui.explorer/src/main/java/org/argeo/jcr/ui/explorer/editors/GenericNodeEditor.java b/server/plugins/org.argeo.jcr.ui.explorer/src/main/java/org/argeo/jcr/ui/explorer/editors/GenericNodeEditor.java index f7e57c6cb..e789e0b99 100644 --- a/server/plugins/org.argeo.jcr.ui.explorer/src/main/java/org/argeo/jcr/ui/explorer/editors/GenericNodeEditor.java +++ b/server/plugins/org.argeo.jcr.ui.explorer/src/main/java/org/argeo/jcr/ui/explorer/editors/GenericNodeEditor.java @@ -1,9 +1,22 @@ +/* + * Copyright (C) 2007-2012 Mathieu Baudier + * + * 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,19 +27,18 @@ import org.eclipse.ui.PartInitException; import org.eclipse.ui.forms.editor.FormEditor; /** - * * 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; @@ -42,10 +54,15 @@ public class GenericNodeEditor extends FormEditor { @Override protected void addPages() { try { - networkDetailsPage = new GenericNodePage(this, + // genericNodePage = new GenericNodePage(this, + // JcrExplorerPlugin.getMessage("genericNodePageTitle"), + // currentNode); + // addPage(genericNodePage); + + genericPropertyPage = new GenericPropertyPage(this, JcrExplorerPlugin.getMessage("genericNodePageTitle"), currentNode); - addPage(networkDetailsPage); + addPage(genericPropertyPage); childNodesPage = new ChildNodesPage(this, JcrExplorerPlugin.getMessage("childNodesPageTitle"),