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

com.att.nsa.cmdtool.JLineConsoleReader Maven / Gradle / Ivy

There is a newer version: 1.2.0-oss
Show newest version
/*******************************************************************************
 * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
 *******************************************************************************/
package com.att.nsa.cmdtool;

import java.io.IOException;

public class JLineConsoleReader implements ConsoleReader
{
	public JLineConsoleReader () throws IOException
	{
		fJline = new jline.console.ConsoleReader ();
	}

	@Override
	public void setPrompt ( String p )
	{
		fJline.setPrompt ( p );
	}

	@Override
	public String readLine () throws IOException
	{
		return fJline.readLine ();
	}

	private jline.console.ConsoleReader fJline;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy