public CoreDocument(Edu.Stanford.Nlp.Pipeline.Annotation annotation) { this.annotationDocument = annotation; WrapAnnotations(); }
/// <summary>Copy constructor.</summary> /// <param name="map">The new Annotation copies this one.</param> public Annotation(Edu.Stanford.Nlp.Pipeline.Annotation map) : base(map) { }
public CoreDocument(string documentText) { this.annotationDocument = new Edu.Stanford.Nlp.Pipeline.Annotation(documentText); }