
                  ---------------------------------------
                  -- Colapi: Code Colorer for Java API --
                  ---------------------------------------

The purpose of this tool is to format/colorize Java code in html documents.

This tool processes java code between the [code]...[/code] tags by:
   - Replacing [code] and [/code] with <code><pre> and </pre></code>
   - Replacing "<", ">" and "&" with "&lt;", "&gt;" and "&amp;" 
   - Coloring keywords, comments and String literals.

Command line usage:
       java -jar file.html [properties]
                  (color one html file)
   or  java -jar directory [properties]
      (color all html files in directory)

where properties include:
   -Dencoding=<value> File encoding (default "UTF-8")
   -DkeywordColor=<value> Keyword color (default "#7F0055")
   -DcommentColor=<value> Comment color (default "#3F7F5F")
   -DstringColor=<value> String color (default "#0000A0")

Ant script usage:
   <java classname="Colapi" classpath="colapi.jar">
       <arg value="${api}"/>
   </java>

This tool is in the public domain (http://javolution.org/colapi.jar)  