void applyTo()

in usage-statistics-util/src/jetbrains/buildServer/usageStatistics/impl/providers/BaseUsageStatisticsProvider.java [76:83]


    void applyTo(@NotNull final UsageStatisticsPresentationManager presentationManager) {
      for (final StatisticPresentation sp : myStatisticPresentations) {
        presentationManager.applyPresentation(sp.getId(), sp.getDisplayName(), sp.getGroupName(), sp.getFormatter(), sp.getValueTooltip());
      }
      for (final GroupPresentation gp : myGroupPresentations) {
        presentationManager.setGroupType(gp.getGroupName(), gp.getGroupTypeId(), gp.getGroupPosition(), gp.getGroupSettings());
      }
    }