base.Configuration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jstat Show documentation
Show all versions of jstat Show documentation
Java Library for Statistical Analysis.
The newest version!
package base;
public class Configuration {
public static boolean ENABLE_WARNINGS = true;
public static class Logging
{
public static String WARN_MSG = "WARNING: ";
public static void printWarning(String warningMsg){
System.out.println(WARN_MSG + warningMsg);
}
}
}