X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.eclipse.ui.workbench%2Fsrc%2Forg%2Fargeo%2Feclipse%2Fui%2Fworkbench%2Fosgi%2FBundlesView.java;h=0734ef56d0ddb9883c10c5ccdc955d4058cbd057;hb=7f945886dbd3cd0cf5b0e06b481b78ba1e2c9db9;hp=ca32da0d839b99056c2a0ffb092f00ce6292833a;hpb=21a4ea1fb5380ce1dd763c1ea09067cdd2dfd0f3;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/osgi/BundlesView.java b/org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/osgi/BundlesView.java index ca32da0d8..0734ef56d 100644 --- a/org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/osgi/BundlesView.java +++ b/org.argeo.eclipse.ui.workbench/src/org/argeo/eclipse/ui/workbench/osgi/BundlesView.java @@ -108,9 +108,10 @@ public class BundlesView extends ViewPart { public String getText(Object element) { - return ""; + // return ""; // FIXME triggers compilation failure - // return ((Bundle) element).getVersion().toString(); + Bundle bundle = (org.osgi.framework.Bundle) element; + return bundle.getVersion().toString(); } }); new ColumnViewerComparator(column, new Comparator() {