Search Results

2
votes
7answers
424 views

Is Java Reflection on Inherited Methods Different in Windows and Linux?

While setting up Hudson for continous integration testing (on a JeOS server), I've come across some strange behaviour I'm hoping the fine people at SO can explain to me. Our unit tests depe …
2
votes

Is there a general “backend” library for Java reflection

Have a look at Apache Commons BeanUtils …
1
vote

Is Java Reflection on Inherited Methods Different in Windows and Linux?

Mystery partially solved: MethodUtils.getMatchingAccessibleMethod() apparently works differently on Linux and Windows. By using MethodUtils.getAccessibleMethod() instead, it works. …