smetana.core.debug.SmetanaDebug Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package smetana.core.debug;
import java.util.LinkedHashMap;
import java.util.Map;
public final class SmetanaDebug {
// ::remove folder when __HAXE__
static private final Map methods = new LinkedHashMap();
static public void LOG(String s) {
}
static public void ENTERING(String signature, String methodName) {
// if (methods.containsKey(methodName) == false)
// methods.put(methodName, methodName);
}
static public void LIST_METHODS() {
int i = 0;
for (String s : methods.keySet()) {
System.err.println("i=" + i + " " + s);
i++;
}
}
static public void LEAVING(String signature, String methodName) {
}
public static void reset() {
}
public static void printMe() {
}
}