This commit is contained in:
avflor 2018-06-18 11:28:27 -07:00 коммит произвёл Ashvin
Родитель 0e5d9be5b7
Коммит 7344de21d0
1 изменённых файлов: 14 добавлений и 2 удалений

Просмотреть файл

@ -1,8 +1,20 @@
package com.microsoft.dhalion;
import java.util.ArrayList;
import static java.awt.SystemColor.text;
public class Utils {
public static String getCompositeName(String text, String metricName) {
return text + "_" + metricName;
public static String getCompositeName(String... names) {
if (names.length > 0) {
String text = names[0];
for (int i = 1; i < names.length; i++) {
text = text + "_" + names[i];
}
return text;
}
return "";
}
}