Package net.java.ao
Annotation Type Accessor
Used to mark a particular field as an accessor. This allows two things:
- Non-compliance with the get/set convention
- Overriding of the auto-generated field name (e.g. a method named "getURI" would generate (by default) a field name of "uRI". Most likely, the desired field name was in fact "uri". This annotation allows such field names
- Author:
- Daniel Spiewak
-
Required Element Summary
Required Elements
-
Element Details
-
value
String valueThe name of the field for which this method is an accessor. This will override any automatically generated field name.
-