Exemplo n.º 1
0
 /// <summary>
 /// Initializes a recorder after creation, needed if actions are selected later
 /// </summary>
 /// <param name="graph">The named graph whose changes are to be recorded</param>
 /// <param name="subOutEnv">The subaction and output environment receiving some of the action events, may be null if only graph changes are requested</param>
 public void Initialize(INamedGraph graph, ISubactionAndOutputAdditionEnvironment subOutEnv)
 {
     this.graph     = graph;
     this.subOutEnv = subOutEnv;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a recorder after creation, needed if actions are selected later
 /// </summary>
 /// <param name="graph">The named graph whose changes are to be recorded</param>
 /// <param name="subOutEnv">The subaction and output environment receiving some of the action events, may be null if only graph changes are requested</param>
 public void Initialize(INamedGraph graph, ISubactionAndOutputAdditionEnvironment subOutEnv)
 {
     this.graph = graph;
     this.subOutEnv = subOutEnv;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Create a recorder
 /// </summary>
 /// <param name="graph">The named graph whose changes are to be recorded</param>
 /// <param name="subOutEnv">The subaction and output environment receiving some of the action events, may be null if only graph changes are requested</param>
 public Recorder(INamedGraph graph, ISubactionAndOutputAdditionEnvironment subOutEnv)
 {
     Initialize(graph, subOutEnv);
 }
Exemplo n.º 4
0
 /// <summary>
 /// Create a recorder
 /// </summary>
 /// <param name="graph">The named graph whose changes are to be recorded</param>
 /// <param name="subOutEnv">The subaction and output environment receiving some of the action events, may be null if only graph changes are requested</param>
 public Recorder(INamedGraph graph, ISubactionAndOutputAdditionEnvironment subOutEnv)
 {
     Initialize(graph, subOutEnv);
 }