Tag List Report
The following document contains the listing of user tags found in the code. Below is the summary of the occurrences per tag.
| Tag | Total number of occurrences |
|---|
| @todo | 2 |
| TODO | 4 |
Each tag is detailed below:
Number of occurrences found in the code: 2
| org.apache.commons.jxpath.ri.model.MixedModelTest | Line |
|---|
| what is this supposed to do? Should we stick to XPath, in which case [1] is simply ignored, or Java, in which case it is supposed to extract the first element from the list? | 257 |
| org.apache.commons.jxpath.ri.model.dynabeans.DynaBeanPropertyPointer | Line |
|---|
| do something about the sorting - LIKE WHAT? - MJB */ | 74 |
Number of occurrences found in the code: 4
| org.apache.commons.jxpath.ri.JXPathContextReferenceImpl | Line |
|---|
| (work in progress) - trying to integrate with Xalan Object ctxNode = getNativeContextNode(expression); if (ctxNode != null) { System.err.println("WILL USE XALAN: " + xpath); CachedXPathAPI api = new CachedXPathAPI(); try { if (expression instanceof Path) { Node node = api.selectSingleNode((Node)ctxNode, xpath); System.err.println("NODE: " + node); if (node == null) { return null; } return new DOMNodePointer(node, null).getValue(); } else { XObject object = api.eval((Node)ctxNode, xpath); switch (object.getType()) { case XObject.CLASS_STRING: return object.str(); case XObject.CLASS_NUMBER: return new Double(object.num()); case XObject.CLASS_BOOLEAN: return new Boolean(object.bool()); default: System.err.println("OTHER TYPE: " + object.getTypeString()); } } } catch (TransformerException e) { | 283 |
| Auto-generated catch block e.printStackTrace(); } return } | 309 |
| org.apache.commons.jxpath.ri.model.container.ContainerPointer | Line |
|---|
| what if this is a collection? | 101 |
| org.apache.commons.jxpath.ri.model.dynamic.DynamicPropertiesModelTest | Line |
|---|
| more iterator testing with maps | 29 |