[EMAIL PROTECTED] wrote:
>+ /**
>+ * @parameter property="foo"
>+ */
>+ private String fooValue;
>
>
...
>+ public void setFoo( String fooValue )
>+ {
>+ this.fooValue = fooValue;
>+ }
>
>
Can you explain the reason for going with a property attribute and using
methods that don't match the field name? This means that they don't work
under bean conventions (and IDE generation of getters/setters :)
I would have expected a simple:
/** @parameter */
private String foo;
public void setFoo( String foo ) { this.foo = foo }
public String getFoo() { return foo; }
Cheers,
Brett
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]