Erlang the Movie II - The Sequel (with transcript)
-
submitted by dpapathanasiou
[link] [1 comment]
1 week ago
thoughts, ideas and ramblings about software development
IBundleGroupProvider[] providers = Platform.getBundleGroupProviders();
if (providers != null) {
for (IBundleGroupProvider provider : providers) {
IBundleGroup[] bundleGroups = provider.getBundleGroups();
for (IBundleGroup group : bundleGroups) {
if (group.getIdentifier().equals(featureId)) {
version = group.getVersion();
}
}
}
}
}