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

src.main.java.com.eva.properties.Log Maven / Gradle / Ivy

Go to download

Advanced properties with object factories, references and inheritance.

There is a newer version: 0.3
Show newest version
/*
 * $Id: Log.java 9 2007-02-06 18:20:13Z max $
 * 
 * Copyright (c) 2006-2007 Maximilian Antoni. All rights reserved.
 * 
 * This software is licensed as described in the file LICENSE.txt, which you
 * should have received as part of this distribution. The terms are also
 * available at http://www.maxantoni.de/projects/eva-properties/license.txt.
 */
package com.eva.properties;

import java.util.logging.Logger;

/**
 * is the logger for all classes in this package. Localized messages will be
 * read from the properties file  com.eva.properties.messages.
 * 
 * @author Max Antoni
 * @version $Revision: 9 $
 */
class Log {
    static final Logger INSTANCE = Logger.getLogger("com.eva.properties",
            "com.eva.properties.messages");
    
    /**
     * Konstruktion verbieten.
     */
    private Log() {
        super();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy