/// <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; }
/// <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;
public void AttachObjectViaPreposition(IPrepositional prepositional) { throw new NotImplementedException(); }
/// <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;