vote up 1 vote down star

I am creating some simple groovy classes, e.g.

class Person {
    int age
    String name
}

that are being used in a Java method that relies on reflection to pull out the object properties, e.g. age and name. The problem is that metaClass is also showing up as a property. Updating the Java method to ignore this property is not an option. I've tried setting the metaClass property to null but that didn't work.

flag

67% accept rate
There will be other members added by the compiler in other contexts (like the internal outer reference in an inner class). Maybe you can update the reflection code to reflect only package/protected/public properties? – Software Monkey May 5 at 16:26

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.