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

com.orientechnologies.common.console.DefaultConsoleReader Maven / Gradle / Ivy

The newest version!
package com.orientechnologies.common.console;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class DefaultConsoleReader implements OConsoleReader {
  final BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

  public String readLine() {
    try {
      return reader.readLine();
    } catch (IOException e) {
      return null;
    }
  }

  public OConsoleApplication getConsole() {
    return null;
  }

  public void setConsole(OConsoleApplication console) {
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy