Package lotus.domino

Examples of lotus.domino.View.FTSearch()


      View v = db.getView("AllSnippetsFlat");
      try {
        RootNode root = new RootNode();
        String apisSearch = (String)ExtLibUtil.getViewScope().get("assetSearch");
        if(StringUtil.isNotEmpty(apisSearch)) {
          v.FTSearch(apisSearch);
          //ViewEntryCollection col = v.getAllEntriesByKey(getAssetForm());
          ViewEntryCollection col = v.getAllEntries();
          for(ViewEntry e=col.getFirstEntry(); e!=null; e=col.getNextEntry()) {
            Vector<?> values = e.getColumnValues();
            String notesUnid = e.getUniversalID();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.