Java 类org.mozilla.javascript.tools.shell.ShellConsole 实例源码

项目:rhino-jscover    文件:ShellLine.java   
@Deprecated
public static InputStream getStream(Scriptable scope) {
    ShellConsole console = ShellConsole.getConsole(scope,
            Charset.defaultCharset());
    return (console != null ? console.getIn() : null);
}
项目:astor    文件:ShellLine.java   
@Deprecated
public static InputStream getStream(Scriptable scope) {
    ShellConsole console = ShellConsole.getConsole(scope,
            Charset.defaultCharset());
    return (console != null ? console.getIn() : null);
}
项目:Rhino-Prov-Mod    文件:ShellLine.java   
@Deprecated
public static InputStream getStream(Scriptable scope) {
    ShellConsole console = ShellConsole.getConsole(scope,
            Charset.defaultCharset());
    return (console != null ? console.getIn() : null);
}
项目:closure-compiler-old    文件:ShellLine.java   
@Deprecated
public static InputStream getStream(Scriptable scope) {
    ShellConsole console = ShellConsole.getConsole(scope,
            Charset.defaultCharset());
    return (console != null ? console.getIn() : null);
}
项目:closure-compiler-copy    文件:ShellLine.java   
@Deprecated
public static InputStream getStream(Scriptable scope) {
    ShellConsole console = ShellConsole.getConsole(scope,
            Charset.defaultCharset());
    return (console != null ? console.getIn() : null);
}