]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.client.ui.dist/src/org/argeo/slc/client/ui/dist/editors/ModularDistVersionEditor.java
Adapt to changes in Argeo Commons.
[gpl/argeo-slc.git] / org.argeo.slc.client.ui.dist / src / 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 static final long serialVersionUID = -2223542780164288554L;
32
33 // private final static Log log =
34 // LogFactory.getLog(ModularDistVersionEditor.class);
35 public final static String ID = DistPlugin.PLUGIN_ID + ".modularDistVersionEditor";
36
37 @Override
38 public void init(IEditorSite site, IEditorInput input)
39 throws PartInitException {
40 super.init(site, input);
41 }
42
43 @Override
44 protected void addPages() {
45 setPartName(getFormattedName());
46 try {
47 addPage(new ModularDistVersionOverviewPage(this, "Modules ",
48 getArtifact()));
49 addPage(new RunInOsgiPage(this, "Run as OSGi ", getArtifact()));
50 addPage(new ModularDistVersionDetailPage(this, "Details",
51 getArtifact()));
52 } catch (PartInitException e) {
53 throw new SlcException("Cannot add distribution editor pages", e);
54 }
55 }
56
57 protected String getFormattedName() {
58 try {
59 String partName = null;
60 if (getArtifact().hasProperty(SLC_NAME))
61 partName = getArtifact().getProperty(SLC_NAME).getString();
62 else
63 partName = getArtifact().getName();
64
65 if (partName.length() > 10) {
66 partName = "..." + partName.substring(partName.length() - 10);
67 }
68 return partName;
69 } catch (RepositoryException re) {
70 throw new SlcException("unable to get slc:name property for node "
71 + getArtifact(), re);
72 }
73 }
74
75 }