public LinguisticStructureBase(IAdTree adTree, IAttributesModel attributesModel, ILinguisticStructureFactory factory, BigInteger attributes)
 {
     AdTree          = adTree;
     AttributesModel = attributesModel;
     Factory         = factory;
     Attributes      = attributes;
 }
Example #2
0
 public Word(IAdTree wordAdTree, IAttributesModel attributesModel, ILinguisticStructureFactory factory, BigInteger attributes)
     : base(wordAdTree, attributesModel, factory, attributes)
 {
 }
Example #3
0
 public Term(IAdTree termAdTree, IAttributesModel attributesModel, ILinguisticStructureFactory factory, BigInteger attributes)
     : base(termAdTree, attributesModel, factory, attributes)
 {
 }
Example #4
0
 public Sentence(IAdTree SentenceAdTree, IAttributesModel attributesModel, ILinguisticStructureFactory factory, BigInteger attributes)
     : base(SentenceAdTree, attributesModel, factory, attributes)
 {
 }
Example #5
0
 public Clause(IAdTree clauseAdTree, IAttributesModel attributesModel, ILinguisticStructureFactory factory, BigInteger attributes)
     : base(clauseAdTree, attributesModel, factory, attributes)
 {
 }