Пример #1
0
 /// <summary>
 /// Create a new <see cref="PrepositionNode"/>.
 /// </summary>
 /// <param name="prepType">Signifies the direction/location represented.</param>
 public PrepositionNode(string origWord, string id, PrepFlag prepType) : base(origWord, id)
 {
     PrepType = prepType;
 }
Пример #2
0
 /// <summary>
 /// Create a new <see cref="PrepositionDef"/>.
 /// </summary>
 /// <param name="prepType">Signifies the direction/location represented.</param>
 public PrepositionDef(string id, PrepFlag prepType) : base(id)
 {
     this.prepType = prepType;
 }