зеркало из https://github.com/microsoft/Dhalion.git
Updated Utils class
This commit is contained in:
Родитель
0e5d9be5b7
Коммит
7344de21d0
|
@ -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 "";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче