Tag List Report

The following document contains the listing of user tags found in the code. Below is the summary of the occurences per tag.

TagTotal number of occurences
@todo0
TODO5

Each tag is detailed below:

@todo

Number of occurences found in the code: 0

TODO

Number of occurences found in the code: 5

org.apache.camel.spring.CamelBeanPostProcessorLine
support callbacks? if (method.getAnnotation(Callback.class) != null) { try { Expression e = ExpressionFactory.createExpression( method.getAnnotation(Callback.class).condition()); JexlContext jc = JexlHelper.createContext(); jc.getVars().put("this", obj); Object r = e.evaluate(jc); if (!(r instanceof Boolean)) { throw new RuntimeException("Expression did not returned a boolean value but: " + r); } Boolean oldVal = req.getCallbacks().get(method); Boolean newVal = (Boolean) r; if ((oldVal == null || !oldVal) && newVal) { req.getCallbacks().put(method, newVal); method.invoke(obj,154
handle return value and sent it as166
org.apache.camel.spring.RouteBuilderFinderLine
apply some filter?84
org.apache.camel.spring.handler.CamelNamespaceHandlerLine
we can zap this?105
org.apache.camel.spring.spi.SpringInjectorLine
support annotations for mandatory injection points?42