Browse Source

Added Debug class for ease of use Functions

Added out Function to Debug class
Matthias Wilhelm 7 years ago
parent
commit
d983c34db0

+ 20 - 0
scopviz/src/main/java/de/tu_darmstadt/informatik/tk/scopviz/debug/Debug.java

@@ -0,0 +1,20 @@
+package de.tu_darmstadt.informatik.tk.scopviz.debug;
+
+public class Debug {
+	
+	/**
+	 * System.out.println(s); in kurz
+	 * @param s Wird in der Konsole ausgegeben
+	 */
+	public static void out(String s) {
+		System.out.println(s);
+	}
+	
+	/**
+	 * System.out.println(s); in kurz
+	 * @param s Wird in der Konsole ausgegeben
+	 */
+	public static void out(int s) {
+		System.out.println(s);
+	}
+}