Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-06 | Fixed javadoc problems, and added a javadoc target to the build script. | Reinier Zwitserloot | |
2009-07-06 | Last massive documentation dump. All basic javadoc is now done, though ↵ | Reinier Zwitserloot | |
especially the docs on the lombok annotations in the lombok package need far more massaging. Also added a feature to HandleSynchronized to not auto-generate the locker fields if a specific name is provided (because, imagine you typoed those. You'd never find it!) | |||
2009-06-23 | Removed the equalsPrime thing, because that's just needlessly putting ↵ | Reinier Zwitserloot | |
implementation details in there. If switching primes is so important, hash the type name and turn that into a prime, or something. Also added some javadoc. | |||
2009-06-19 | Added initial support for the @Data annotation. Currently produces getters ↵ | Reinier Zwitserloot | |
and setters only, not yet a constructor, toString, hashCode, or equals. HandleGetter and HandleSetter have been updated to handle static (theoretic; you can't put annotations on static fields normally). You can now make AnnotationValue objects using just an annotationNode and a target type, as well as check if a given annotationNode is likely to represent a target annotation type. This is in Javac and Eclipse classes. HandleGetter and HandleSetter can now be asked to make a getter/setter, and will grab access level off of a Getter/Setter annotation, if present. |