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 | 0 |
| TODO | 13 |
Each tag is detailed below:
Number of occurrences found in the code: 13
| org.apache.camel.component.validator.ValidatorRouteTest | Line |
|---|---|
| why zero? | 58 |
| 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, | 186 |
| handle return value and sent it as | 198 |
| org.apache.camel.spring.CamelContextFactoryBean | Line |
| there should be a neater way to do this! | 152 |
| org.apache.camel.spring.Main | Line |
| --No comment-- | 128 |
| org.apache.camel.spring.RouteBuilderFinder | Line |
| apply some filter? | 105 |
| org.apache.camel.spring.handler.BeanDefinitionParser | Line |
| cannot use AbstractSimpleBeanDefinitionParser as doParse() is final and isEligableAttribute does not allow us to filter out attributes with the name "xmlns:" | 35 |
| the following code is copied from AbstractSimpleBeanDefinitionParser it can be removed if ever the doParse() method is not final! or the Spring bug http://jira.springframework.org/browse/SPR-4599 is resolved | 64 |
| org.apache.camel.spring.handler.CamelNamespaceHandler | Line |
| switch to use the above mechanism? | 99 |
| we can zap this? | 231 |
| org.apache.camel.spring.spi.SpringInjector | Line |
| support annotations for mandatory injection points? | 38 |
| org.apache.camel.spring.xml.SpringXmlRouteBuilderTest | Line |
| --No comment-- | 103 |
| --No comment-- | 108 |