blob: 45add085e1cafeb05ffea2114db22365478ef510 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 SAP AG and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Lazar Kirchev, SAP AG - initial API and implementation
* IBM Corporation - ongoing development
*******************************************************************************/
package org.eclipse.equinox.console.supportability;
import java.io.InputStream;
import java.io.OutputStream;
import org.eclipse.equinox.console.common.ConsoleInputStream;
import org.eclipse.equinox.console.common.InputHandler;
/**
* This class customizes the generic handler with a concrete content processor,
* which provides command line editing.
*/
public class ConsoleInputHandler extends InputHandler {
public ConsoleInputHandler(InputStream input, ConsoleInputStream in, OutputStream out) {
super(input, in, out);
inputScanner = new ConsoleInputScanner(in, out);
}
}