annotator 0.1.0

A simple CLI tool to automatically annotate Java source code files.
annotator-0.1.0 is not a library.

🏷️ Java Annotator CLI

A simple CLI tool to automatically annotate Java source code files.

Usage

Process Java files in a path (file or directory) with specified annotations.

cargo run -- <PATH> -a <ANNOTATION>

Example

cargo run -- src/java -a @Override -a @CustomTag

src/java/java/a/b/C.java C
src/java/a/B.java B
src/java/A.java A

The output lists only the paths of the modified Java files and the type (class, interface, enum, etc.) that was annotated within that file.