Updated label provider of RunnableCall (to include counter)
diff --git a/plugins/org.eclipse.app4mc.amalthea.model.edit/src/org/eclipse/app4mc/amalthea/model/provider/CustomItemProviderService.xtend b/plugins/org.eclipse.app4mc.amalthea.model.edit/src/org/eclipse/app4mc/amalthea/model/provider/CustomItemProviderService.xtend
index beeac58..b7396a7 100644
--- a/plugins/org.eclipse.app4mc.amalthea.model.edit/src/org/eclipse/app4mc/amalthea/model/provider/CustomItemProviderService.xtend
+++ b/plugins/org.eclipse.app4mc.amalthea.model.edit/src/org/eclipse/app4mc/amalthea/model/provider/CustomItemProviderService.xtend
@@ -2473,8 +2473,9 @@
switch notification.getFeatureID(typeof(RunnableCall)) {
case AmaltheaPackage::RUNNABLE_CALL__RUNNABLE:
return new ViewerNotification(notification, notification.getNotifier(), false, true)
- case AmaltheaPackage::RUNNABLE_CALL__STATISTIC,
- case AmaltheaPackage::RUNNABLE_CALL__ARGUMENTS:
+ case AmaltheaPackage::RUNNABLE_CALL__ARGUMENTS,
+ case AmaltheaPackage::RUNNABLE_CALL__COUNTER,
+ case AmaltheaPackage::RUNNABLE_CALL__STATISTIC:
return new ViewerNotification(notification, notification.getNotifier(), true, false)
}
return null