]> gerrit.simantics Code Review - simantics/r.git/blob - bundles/org.simantics.r.scl/src/org/rosuda/REngine/REngineConsoleHistoryInterface.java
(refs #6833) Test RExp inheritance in SCL
[simantics/r.git] / bundles / org.simantics.r.scl / src / org / rosuda / REngine / REngineConsoleHistoryInterface.java
1 package org.rosuda.REngine;
2
3 /** interface defining delegate methods used by {@link REngine} to forward console history callbacks from R. */
4 public interface REngineConsoleHistoryInterface {
5         /** called when R wants to save the history content.
6          *  @param eng calling engine
7          *  @param filename name of the file to save command history to
8          */
9         public void   RSaveHistory  (REngine eng, String filename);     
10         
11         /** called when R wants to load the history content.
12          *  @param eng calling engine
13          *  @param filename name of the file to load the command history from
14          */
15         public void   RLoadHistory  (REngine eng, String filename);
16 }