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.
Tag | Total number of occurences |
---|
@todo | 0 |
TODO | 5 |
Each tag is detailed below:
Number of occurences found in the code: 0
Number of occurences found in the code: 5
org.apache.camel.spring.CamelBeanPostProcessor | Line |
---|
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 as | 166 |
org.apache.camel.spring.RouteBuilderFinder | Line |
---|
apply some filter? | 84 |
org.apache.camel.spring.handler.CamelNamespaceHandler | Line |
---|
we can zap this? | 105 |
org.apache.camel.spring.spi.SpringInjector | Line |
---|
support annotations for mandatory injection points? | 42 |