public TagsComponent()
 {
     this.state  = new CurrentTaggingState();
     this.tagger = new Tagger(this.state);
     this.tagPropagationComponent = new TagPropagationComponent(this.state);
 }
Exemple #2
0
 internal Tagger(CurrentTaggingState state)
 {
     this.state = state;
 }
Exemple #3
0
 internal Tags()
 {
     this.state  = new CurrentTaggingState();
     this.tagger = new Tagger(this.state);
     this.tagContextBinarySerializer = new TagContextBinarySerializer(this.state);
 }