- Drop support for JDK 1.4 (was causing a number of issues with frameworks that scan the classpath)
- Implement long-standing refactorings (taking the opportunity now that we've broken binary compatibility)
- Static Metawidget improvements (ready for Forge CR1)
- Bug fixes, documentation and unit tests
- There is no longer a separate Java5Inspector: it has been rolled into PropertyTypeInspector
- FacesInspector has been renamed FacesAnnotationInspector
As always, the best place to start is the Reference Documentation:
Your continued feedback is invaluable to us. Please download it and let us know what you think.
6 comments:
Maybe, it would be cool to tell in docs, that JexlProcessor now works with String arrays?
Thanks for reminding me! Updated for 2.1. Also updated FacesInspectionResultProcessor and JspInspectionResultProcessor, and added Collection support too.
That's really cool! Any iterable collection?
Yeah. Like this:
if ( valueObject instanceof Collection ) {
value = CollectionUtils.toString( (Collection) valueObject );
}
Updated for 2.1.
Does it mean. that this functionality is not still avaliable in 2.0 release?
JEXL Arrays are in 2.0. But JEXL Collections will have to wait until 2.1, sorry.
But you can already download them in 2.1-SNAPSHOT.
Post a Comment