Skip to content

Commit

Permalink
Update README: add info about JIgnore annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
vbauer committed Jan 7, 2016
1 parent db0367b commit c9896c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Jackdaw was inspired by [Lombok](http://projectlombok.org) project, but in compa
<li><a href="#jcomparator">@JComparator</a></li>
<li><a href="#jfactorymethod">@JFactoryMethod</a></li>
<li><a href="#jfunction">@JFunction</a></li>
<li><a href="#jignore">@JIgnore</a></li>
<li><a href="#jmessage">@JMessage</a></li>
<li><a href="#jpredicate">@JPredicate</a></li>
<li><a href="#jrepeatable">@JRepeatable</a></li>
Expand Down Expand Up @@ -445,6 +446,11 @@ public final class CompanyFunctions {
By default, all generated functions are null-safe. Use `nullable` parameter to generate not null-safe functions.


### @JIgnore

The **@JIgnore** annotation allows to ignore classes or interfaces from Jackdaw's processing.


### @JMessage
The **@JMessage** annotation does not generate any additional code, instead of this it prints information in logs during project compiling.
It could be useful to make some really meaningful notes for you or your team, instead of using TODOs in comments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
/**
* Ignore class from Jackdaw's processing.
*
* This annotation is created for development purposes.
*
* @author Vladislav Bauer
*/

Expand Down

0 comments on commit c9896c8

Please sign in to comment.