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

fr.centralesupelec.edf.riseclipse.util.TextRiseClipseConsole Maven / Gradle / Ivy

/*
*************************************************************************
**  Copyright (c) 2016-2022 CentraleSupélec & EDF.
**  All rights reserved. This program and the accompanying materials
**  are made available under the terms of the Eclipse Public License v2.0
**  which accompanies this distribution, and is available at
**  https://www.eclipse.org/legal/epl-v20.html
** 
**  This file is part of the RiseClipse tool
**  
**  Contributors:
**      Computer Science Department, CentraleSupélec
**      EDF R&D
**  Contacts:
**      [email protected]
**      [email protected]
**  Web site:
**      https://riseclipse.github.io
*************************************************************************
*/
package fr.centralesupelec.edf.riseclipse.util;

import org.eclipse.jdt.annotation.NonNull;

/**
 * Basic RiseClipse console on System.out
 * 
 * @author Dominique Marcadet
 *
 */
public class TextRiseClipseConsole extends AbstractRiseClipseConsole {
    
    public TextRiseClipseConsole() {
        super();
    }

    public TextRiseClipseConsole( boolean useColor ) {
        super( useColor );
    }

	/**
	 * Output message on System.out
	 */
    @Override
    protected void doOutputMessage( @NonNull String m ) {
        System.out.println( m );  // NOSONAR
        System.out.flush();       // NOSONAR
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy