ScoreNode
10761077107810791080108110821083108410851086108710881089
QueryHits hits = null; try { hits = handler.executeQuery(query); ScoreNode sn; while ((sn = hits.nextScoreNode()) != null) { result.add(sn.getNodeId()); } return result; } catch (IndexOfflineIOException e) {
10891090109110921093109410951096109710981099110011011102
10091010101110121013101410151016101710181019102010211022
10751076107710781079108010811082108310841085108610871088
767768769770771772773774775776777778779780781782
Set<String> result = new HashSet<String>(); try { QueryHits hits = handler.executeQuery(query); ScoreNode sn; while ((sn = hits.nextScoreNode()) != null) { // Node node = session.getNodeById(sn.getNodeId()); result.add(sn.getNodeId()); } } catch (IOException e) { throw new RepositoryException(e.getLocalizedMessage(), e);
840841842843844845846847848849850851852853854855
10481049105010511052105310541055105610571058105910601061