# annokit
**Repository Path**: chinesedevelopermonkey/annokit
## Basic Information
- **Project Name**: annokit
- **Description**: Java annotion in action
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-05-26
- **Last Updated**: 2021-05-26
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# annokit
Java annotion in action.
Everyone can wirte an annotation step by step.
annokit has completed three annotations now:
**@Factory**: Factory design model
**@Setter**: generate set method automaticly
**@Getter**: generate get method automaticly
but,Setter and Getter annotation have a barrier to remoce, thus, generating method during compile stage, and cannot write the generated method to file, otherwise, this will got a confilct with .class by javac. so, I must to modify the AST in annotation resolving stage. I have not so much time, this have not finished. and I have read the source code of [lombok][1], which has realized that.
By [hackersun][2]
2015.12.20
[1]: https://github.com/rzwitserloot/lombok
[2]: https://github.com/hackersun