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

scala.tools.jline.UnsupportedTerminal Maven / Gradle / Ivy

There is a newer version: 2.11.0-M3
Show newest version
/*
 * Copyright (c) 2002-2007, Marc Prud'hommeaux. All rights reserved.
 *
 * This software is distributable under the BSD license. See the terms of the
 * BSD license in the documentation provided with this software.
 */

package scala.tools.jline;

/**
 * An unsupported terminal.
 *
 * @author Marc Prud'hommeaux
 * @author Jason Dillon
 * @since 2.0
 */
public class UnsupportedTerminal
    extends TerminalSupport
{
    public UnsupportedTerminal() {
        super(false);
        setAnsiSupported(false);
        setEchoEnabled(true);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy