
com.cedarsoft.utils.StringCmdLine Maven / Gradle / Ivy
package com.cedarsoft.utils;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* Command Line implementation that is based on strings.
*
* Date: 25.09.2006
* Time: 19:43:04
*
* @author Johannes Schneider -
* Xore Systems
*/
public class StringCmdLine extends AbstractCmdLine implements CmdLine {
private int expectedIndex;
private List expectedOut = new ArrayList();
private List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy