Package org.apache.ctakes.typesystem.type.refsem

Examples of org.apache.ctakes.typesystem.type.refsem.Date


      medicationMention.setMedicationStrength(strength);
    }

    if (fromAnnotation.getStartDate()!=null) {
     
      Date d = DateParser.parse(jcas, fromAnnotation.getStartDate());
     
      // if (d!=null) d.addToIndexes(); // don't need to be able to get these directly from the AnnotationIndex
      if (d!=null) medicationMention.setStartDate(d);
    }
    // Add fix CTAKE-129 Populate the Drug NER named entity confidence attribute
View Full Code Here


                keepTrackOfDupBegin = neAnnot.getBegin();
                keepTrackOfDupEnd = neAnnot.getEnd();



                Date localDate = neAnnot.getStartDate();//.getStartDate();
                String chunk = null;

                boolean foundChunk = false;
                Iterator findChunk = indexes
                .getAnnotationIndex(
View Full Code Here

TOP

Related Classes of org.apache.ctakes.typesystem.type.refsem.Date

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.