Apache Commons logo Commons JXPath

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 Class Total number of occurrences Tag strings used by tag class
@todo 2 @todo
FIXME 0 FIXME
TODO 4 TODO

Each tag is detailed below:

@todo

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? 236
org.apache.commons.jxpath.ri.model.dynabeans.DynaBeanPropertyPointer Line
do something about the sorting - LIKE WHAT? - MJB 176

TODO

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) { 498
Auto-generated catch block e.printStackTrace(); } return } 524
org.apache.commons.jxpath.ri.model.container.ContainerPointer Line
what if this is a collection? 177
org.apache.commons.jxpath.ri.model.dynamic.DynamicPropertiesModelTest Line
more iterator testing with maps 35