Package spatschorke.da.ooconnector

Examples of spatschorke.da.ooconnector.TextPosition


    ISearchResult searchResult = textDocument.getSearchService().findAll(
        searchDescriptor);

    List<IArtefactPosition> positions = new ArrayList<IArtefactPosition>();
    for (ITextRange textRange : searchResult.getTextRanges()) {
      OOArtefactPosition position = new TextPosition(ooDocument,
          textRange);
      positions.add(position);
    }
    return positions;
  }
View Full Code Here

TOP

Related Classes of spatschorke.da.ooconnector.TextPosition

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.