Package org.apache.uima.caseditor.editor

Examples of org.apache.uima.caseditor.editor.FeatureStructureSelectionIterator


   */
  public AnnotationSelection(IStructuredSelection selection) {

    mAnnotations = new ArrayList<AnnotationFS>(selection.size());

    for (Iterator<FeatureStructure> it = new FeatureStructureSelectionIterator(selection);
        it.hasNext();) {
      FeatureStructure structure = it.next();

      if (structure instanceof AnnotationFS) {
        mAnnotations.add((AnnotationFS) structure);
      }
    }
View Full Code Here

TOP

Related Classes of org.apache.uima.caseditor.editor.FeatureStructureSelectionIterator

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.