Exemple #1
0
 /// <summary>
 /// <para>Binds the VerbPhrase to an object via a prepositional construct such as a Preposition or PrepositionalPhrase.</para>
 /// <para>Example: He "ran" to work. where "work" is the object of ran via the prepositional construct "to"</para>
 /// </summary>
 /// <param name="prepositional">The IPrepositional construct through which the Object is associated.</param>
 public virtual void AttachObjectViaPreposition(IPrepositional prepositional)
 {
     ObjectOfThePreposition = prepositional.BoundObject;
     PrepositionalToObject  = prepositional;
 }
Exemple #2
0
 /// <summary>
 /// Binds the specified prepositional as the rightward prepositional of the phrase.
 /// </summary>
 /// <param name="prepositional">The prepositional to bind.</param>
 public void BindRightPrepositional(IPrepositional prepositional) => RightPrepositional = prepositional;
Exemple #3
0
 public void AttachObjectViaPreposition(IPrepositional prepositional)
 {
     throw new NotImplementedException();
 }
Exemple #4
0
 /// <summary>
 /// Binds the specified prepositional as the leftward prepositional of the phrase.
 /// </summary>
 /// <param name="prepositional">The prepositional to bind.</param>
 public void BindLeftPrepositional(IPrepositional prepositional) => LeftPrepositional = prepositional;