Package org.foray.common

Examples of org.foray.common.FOrayLogger


     * Returns the logger.
     * @return The logger.
     */
    public Log getLogger() {
        if (this.logger == null) {
            this.logger = new FOrayLogger("FOray Pretty Print");
        }
        return this.logger;
    }
View Full Code Here


     * Zero-argument constructor used for resource discovery purposes.
     * This constructor is used primarily for utility and testing purposes.
     * Use of it is somewhat more risky than using the standard constructor {@link #FontServer4a(Log, PsServer)}.
     */
    public FontServer4a() {
        this.logger = new FOrayLogger("FontServer4a");
        /* Use the FOrayPS implementation as a default. */
        final PsServer psServer = (PsServer) DiscoverSingleton.find(PsServer.class, "org.foray.ps.PsServer4a");
        this.psServer = psServer;
        init();
    }
View Full Code Here

     * Returns the logger.
     * @return The logger.
     */
    public Log getLogger() {
        if (this.logger == null) {
            this.logger = new FOrayLogger("FOrayXDiff");
        }
        return this.logger;
    }
View Full Code Here

     * Returns the logger.
     * @return The logger.
     */
    public Log getLogger() {
        if (this.logger == null) {
            this.logger = new FOrayLogger("FOray ValidateChars");
        }
        return this.logger;
    }
View Full Code Here

TOP

Related Classes of org.foray.common.FOrayLogger

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.