]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/editors/ModularDistVersionEditor.java
Fix distribution editor after further testing with maven produced releases
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / editors / ModularDistVersionEditor.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.slc.client.ui.dist.editors;
17
18 import javax.jcr.RepositoryException;
19
20 import org.argeo.slc.SlcException;
21 import org.argeo.slc.client.ui.dist.DistPlugin;
22 import org.eclipse.ui.IEditorInput;
23 import org.eclipse.ui.IEditorSite;
24 import org.eclipse.ui.PartInitException;
25
26 /**
27 * Manage a modular distribution version contained in a specific workspace of a
28 * repository
29 */
30 public class ModularDistVersionEditor extends ArtifactVersionEditor {
31 // private final static Log log =
32 // LogFactory.getLog(ModularDistVersionEditor.class);
33 public final static String ID = DistPlugin.ID + ".modularDistVersionEditor";
34
35 @Override
36 public void init(IEditorSite site, IEditorInput input)
37 throws PartInitException {
38 super.init(site, input);
39 }
40
41 @Override
42 protected void addPages() {
43 setPartName(getFormattedName());
44 try {
45 addPage(new ModularDistVersionOverviewPage(this, "Modules ",
46 getArtifact()));
47 addPage(new RunInOsgiPage(this, "Run as OSGi ", getArtifact()));
48 addPage(new ModularDistVersionDetailPage(this, "Details",
49 getArtifact()));
50 } catch (PartInitException e) {
51 throw new SlcException("Cannot add distribution editor pages", e);
52 }
53 }
54
55 protected String getFormattedName() {
56 try {
57 String partName = null;
58 if (getArtifact().hasProperty(SLC_NAME))
59 partName = getArtifact().getProperty(SLC_NAME).getString();
60 else
61 partName = getArtifact().getName();
62
63 if (partName.length() > 10) {
64 partName = "..." + partName.substring(partName.length() - 10);
65 }
66 return partName;
67 } catch (RepositoryException re) {
68 throw new SlcException("unable to get slc:name property for node "
69 + getArtifact(), re);
70 }
71 }
72
73 }