Contrived (or sometimes practical) implementations of items of the book: Effective Java.
Mostly, the sources are from the book itself, as found here.
Note: Everything detailed in the book is not implemented.
- To enable assertions, use the
-eaflag.
java -ea -cp build/libs/EffectiveJavaMusings.jar ejm.chapter07.item38.App
- To generate docs for java files in a package:
javadoc -d <destination-directory> <source-directory>/*.java