All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.swm.gwt.client.utils.Utils Maven / Gradle / Ivy

The newest version!
package de.swm.gwt.client.utils;

import java.util.logging.Logger;

/**
 * Utility class.
 *
 * @author wiese.daniel
 *         
copyright (C) 2011, SWM Services GmbH */ public final class Utils { private static final Logger LOGGER = Logger.getLogger(Utils.class.getName()); /** * Util constructor. */ private Utils() { } /** * Sreibt eine Debug meldung in die Browser-Console. * * @param msg die Nachricht die geschriben werden soll */ public static void console(String msg) { LOGGER.info(msg); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy