Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-22 | toString(), equals(), and hashCode() now use getX() instead of x if either ↵ | Reinier Zwitserloot | |
it exists OR it will be generated by some other lombok annotation, addressing issue #110. code deduplication by removing HandleData's scanning for fields, which is now no longer done; the sub-parts of Data (Getter, Setter, RequiredArgsConstructor, etc) take care of it now. fix for class-level @Getter/@Setter, which used to go for every field. Now they skip the usual fields (static, for setters final, and $ prefixed fields). Bugfix for @Data not recognizing that it should let field-level @Getter/@Setter take care of generating the getter/setter for multi field declarations (@Getter int x, y); | |||
2010-07-22 | Updated copyright statements and version release name. | Reinier Zwitserloot | |
2010-07-22 | Added more tests, one of which tests usage of .getX() in toString, equals, ↵ | Reinier Zwitserloot | |
and hashCode, which isn't fully working yet, so this test still fails. | |||
2010-07-22 | Added tests for ecj, fixed a few minor bugs that came out of that. | Reinier Zwitserloot | |
2010-07-21 | refactored the tests to prepare running ecj as well as delombok. | Reinier Zwitserloot | |
2010-07-20 | Added checks for warnings in test cases | Roel Spilker | |
2010-07-20 | Added support for checking compiler messages (errors & warnings) | Roel Spilker | |
2010-07-20 | Added tests for @Getter and @Setter on a class[B | Roel Spilker | |
2010-07-20 | Updated the tests to reflect recent modifications: use 'this' where possible ↵ | Roel Spilker | |
and add @SuppressWarnings for all generated fields and methods. | |||
2010-07-20 | With the new features, some of the delombok based unit tests no longer work. | Reinier Zwitserloot | |
2010-01-07 | Now also testing value= as well as arrays in annotation params. | Reinier Zwitserloot | |
2010-01-07 | Added test to ensure interfaces print correctly (test case because 'public' ↵ | Reinier Zwitserloot | |
and 'abstract' are implied). | |||
2010-01-07 | Failing tests now do a full print of the actual and expected delombok output. | Reinier Zwitserloot | |
2010-01-07 | Javac's printer screws up on complex enums. Added tests for this case. | Reinier Zwitserloot | |
2009-12-26 | Added test suite for issue #93 - apparently this problem (naming your class ↵ | Reinier Zwitserloot | |
GetFoo prevents lombok from making a getFoo method) only occurs on eclipse, as the test passes. | |||
2009-12-07 | Added tests to see if we handle fields that start with a $ correctly | Roel Spilker | |
2009-12-07 | Added tests to @Data to check if a field starting with $ will be ignored | Roel Spilker | |
2009-12-02 | Added some tests for @ToString | unknown | |
2009-12-02 | Changed the order of the generated methods in for @Data | Roel Spilker | |
- Constructor(s) - Getters/Setters per field - equals - hashCode - toString Added first test for @Data | |||
2009-12-02 | Improved tests to also test on value= parameters | Roel Spilker | |
2009-12-02 | Added new tests for SneakyThrows | Roel Spilker | |
2009-12-02 | Fixed #73 SneakyThrows without parameter did not default to Throwable.class | Roel Spilker | |
Added tests for SneakyThrows | |||
2009-12-01 | Moved test resource files to a better matching location | Roel Spilker | |
2009-11-30 | Finally got the printing of comments right. Also added a test to see if the ↵ | unknown | |
delomboking a file is an idempotent operation | |||
2009-11-29 | More tests for Synchronized | Roel Spilker | |
2009-11-29 | Fixed the test code for Synchronized | Roel Spilker | |
2009-11-29 | Merge branch 'master' of git@github.com:rzwitserloot/lombok | Roel Spilker | |
2009-11-29 | Updated tests for Getter, Setter and Cleanup. Added Synchronized | Roel Spilker | |
2009-11-29 | 'ant test' will now run the lombok unit tests. | Reinier Zwitserloot | |
2009-11-29 | Improved comment placement (newlines, whitespace) | Roel Spilker | |
2009-11-29 | Can now mark test files as Ignored | Roel Spilker | |
2009-11-29 | Added tests for Setter, Cleanup and NonNull | Roel Spilker | |
2009-11-29 | Annotations on parameters should be inline | Roel Spilker | |
2009-11-28 | Added more Getter-tests | Roel Spilker | |
2009-11-28 | New tests | Roel Spilker | |
2009-11-28 | Use new DirectoryRunner to run tests on all files in a directory | Roel Spilker | |
2009-11-28 | Added support for running unit tests using the method name to determine the ↵ | Roel Spilker | |
file to test | |||
2009-11-27 | Removed empty () for annotation without parameters | unknown | |
2009-11-27 | Improved error reporting | unknown | |
2009-11-27 | The delombok task now works! | Reinier Zwitserloot | |
2009-11-27 | Added a class that is easier to use than the parser itself for delombok, as ↵ | Reinier Zwitserloot | |
well as code to process entire directories at a time. Also removed duplication from the testcases. | |||
2009-11-27 | Thorough work on inserting comments in the proper place for delombok; should ↵ | Roel Spilker | |
now work fine with GWT native methods! NON-NLS-1 is still theoretically problematic, but that'll be a fix for another day. Also added ability to recognize that nothing has changed, which will copy the original file instead of reparsing it. | |||
2009-11-27 | Added another test | Roel Spilker | |
2009-11-27 | delombok now calls lombok. wahey! | Reinier Zwitserloot | |
2009-11-26 | Minor refactoring + added testcase for for-loop | unknown | |
2009-11-26 | Major restructuring+adding tests | Roel Spilker | |