/// <summary>
 /// Creates a statement with a verb from the predefined verb enumeration.
 /// </summary>
 /// <param name="actor">The actor in this statement</param>
 /// <param name="verb">The PredefinedVerb of this statement</param>
 /// <param name="statementTarget">The target statement</param>
 public Statement(Actor actor, PredefinedVerbs verb, StatementTarget statementTarget)
     : this(actor, new StatementVerb(verb), statementTarget)
 {
 }
Beispiel #2
0
 /// <summary>
 /// Creates a statement with a verb from the predefined verb enumeration.
 /// </summary>
 /// <param name="actor">The actor in this statement</param>
 /// <param name="verb">The PredefinedVerb of this statement</param>
 /// <param name="statementTarget">The target statement</param>
 public Statement(Actor actor, PredefinedVerbs verb, StatementTarget statementTarget)
     : this(actor, new StatementVerb(verb), statementTarget)
 {
 }
 /// <summary>
 /// Creates a Statement with the minimum suggested properties
 /// </summary>
 /// <param name="actor">The actor in this statement</param>
 /// <param name="verb">The verb in this statement</param>
 /// <param name="statementTarget">The target of this statement</param>
 public Statement(Actor actor, StatementVerb verb, StatementTarget statementTarget)
 {
     this.actor = actor;
     this.verb = verb;
     this._object = statementTarget;
 }
Beispiel #4
0
 /// <summary>
 /// Creates a Statement with the minimum suggested properties
 /// </summary>
 /// <param name="actor">The actor in this statement</param>
 /// <param name="verb">The verb in this statement</param>
 /// <param name="statementTarget">The target of this statement</param>
 public Statement(Actor actor, StatementVerb verb, StatementTarget statementTarget)
 {
     this.actor   = actor;
     this.verb    = verb;
     this._object = statementTarget;
 }