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