![JAR search and dependency download from the Maven repository](/logo.png)
org.rosuda.REngine.REngineStdOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of REngine Show documentation
Show all versions of REngine Show documentation
REngine API to access R from Java in a backend-independent way.
The newest version!
package org.rosuda.REngine;
/** implementation of the {@link REngineOutputInterface} which uses standard output. */
public class REngineStdOutput implements REngineCallbacks, REngineOutputInterface {
public synchronized void RWriteConsole(REngine eng, String text, int oType) {
((oType == 0) ? System.out : System.err).print(text);
}
public void RShowMessage(REngine eng, String text) {
System.err.println("*** "+text);
}
public void RFlushConsole(REngine eng) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy