17 package net.squiz.matrix.assetmap;
19 import javax.swing.JFrame;
20 import javax.swing.Icon;
22 import javax.swing.JLabel;
30 public final class DG {
33 private static long time = 0;
41 public static final void bam(Object o) {
42 System.out.print(o.toString());
50 public static final void bam(
int i) {
59 public static final void bam(
boolean b) {
68 public static final void bam(
long l) {
77 public static final void bam(
double d) {
81 public static void visiBam(String text) {
82 JFrame f =
new JFrame();
83 f.getContentPane().add(
new JLabel(text));
84 Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
85 f.setLocation(screenSize.width / 2, screenSize.height / 2);
94 public static final void bam(Icon c) {
95 JFrame f =
new JFrame();
96 f.getContentPane().add(
new JLabel(c));
97 Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
98 f.setLocation(screenSize.width / 2, screenSize.height / 2);
102 public static final void bam(JLabel l) {
103 JFrame f =
new JFrame();
104 f.getContentPane().add(l);
122 DG.
bam((System.currentTimeMillis() -
DG.time) / 1000.000000 +
"\n");
124 DG.time = System.currentTimeMillis();