I have inherited a big bunch of existing classes with one getter and a lot
of public fields without any getters like the one below:

public class TestClass {
      public String a1 ="A1";
      public int a2 = 1;
      public boolean a3 = true;

      public boolean getA3() {
            return a3;
      }
}

Unfortunately, CASTOR default introspection does not work on the fields any
more because of the one getter.
It seems that CASTOR was not designed for this.

I would still like to use CASTOR default introspection for these classes.
Are there any plans to enhance CASTOR in a way that it can default inspect
attributes of existing classes in spite of existing getters?
Or is it fairly easy for a possible outside contributor (like me :-)) to
enhance the existing code with an option to default inspect attributes of
existing classes in spite of existing getters?

Thanks in advance,
Eva
_______________________________________________________________________________

This e-mail, including attachments, is intended for the person(s) or
company named and may contain confidential and/or legally privileged
information. Unauthorized disclosure, copying or use of this information
may be unlawful and is prohibited. If you are not the intended recipient,
please delete this message and notify the sender.

----------------------------------------------------------- 
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
        unsubscribe castor-dev

Reply via email to