DOC

org.jpatterns : jpatterns

Maven & Gradle

May 25, 2011
1 usages
85 stars

Java Design Pattern Annotations · Design Patterns are typically encoded into Java code in an ad-hoc fashion. They are either embedded into the names of the classes or written into the Javadocs. Unfortunately it is impossible to accurately determine a pattern based solely on the class structure without knowing the intent of the code author. JPatterns is a collection of annotations that make it easy to communicate the use of (Design)Patterns within your code to your fellow developers and your future self.

Table Of Contents

Latest Version

Download org.jpatterns : jpatterns Javadoc & API Documentation - Latest Versions:

All Versions

Download org.jpatterns : jpatterns Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
0.0.x

How to open Javadoc JAR file in web browser

  1. Rename the file jpatterns-0.0.1-javadoc.jar to jpatterns-0.0.1-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder jpatterns-0.0.1-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "jpatterns-0.0.1-sources.jar" -d "jpatterns-0.0.1-javadoc" -subpackages 

Advertisement