Subversion Repositories SmartDukaan

Rev

Rev 11306 | Rev 11728 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 11306 Rev 11315
Line 382... Line 382...
382
		NodeList nodes = null;
382
		NodeList nodes = null;
383
		try {
383
		try {
384
			nodes = (NodeList) this.xpath.evaluate(resultDocsPath, this.inputSource, XPathConstants.NODESET);
384
			nodes = (NodeList) this.xpath.evaluate(resultDocsPath, this.inputSource, XPathConstants.NODESET);
385
		}
385
		}
386
		catch (XPathExpressionException xpee) {
386
		catch (XPathExpressionException xpee) {
387
			return null;
387
			return resultMap;
388
		}
388
		}
389
		
389
		
390
		if(nodes.getLength() == 0) {
390
		if(nodes.getLength() == 0) {
391
			return null;
391
			return resultMap;
392
		}
392
		}
393
		
393
		
394
		for(int i=0; i<nodes.getLength(); i++) {
394
		for(int i=0; i<nodes.getLength(); i++) {
395
			Node node = nodes.item(i);
395
			Node node = nodes.item(i);
396
			String docID = node.getFirstChild().getTextContent();
396
			String docID = node.getFirstChild().getTextContent();