Is there a known bug in that beanutils hides properties when there are
multiple ways of accessing them? Or is this against the bean spec?

ie) an indexed property, and a simple property that changes the underyling
List:

    public ArrayList getCertifications() {
        return certifications;
    }

    public void setCertifications(ArrayList newCertifications) {
        this.certifications = newCertifications;
    }

    public String getCertifications(int index) {
        return (String)certifications.get(index);
    }

    public void setCertifications(int index, String value) {
        certifications.set(index, value);
    }

It seems that PropertyUtilsBean [getPropertyDescriptor()] will act so that
a mapped value takes precedence over an indexed value over a simple value.
So exceptions are thrown if you try to use beanutils to access the simple
value 'certifications' above.

[Bugzilla took Safari out, so I chose to ask here instead]

Hen


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to