dlr         00/10/15 11:25:47

  Modified:    src/java/org/apache/velocity/runtime Runtime.java
  Log:
  Improved JavaDoc formatting for HTML.
  
  Revision  Changes    Path
  1.13      +4 -0      
jakarta-velocity/src/java/org/apache/velocity/runtime/Runtime.java
  
  Index: Runtime.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/runtime/Runtime.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Runtime.java      2000/10/12 16:01:44     1.12
  +++ Runtime.java      2000/10/15 18:25:46     1.13
  @@ -83,6 +83,7 @@
    * structure that developers need to be familiar with
    * in order to get Velocity to perform.
    *
  + * <pre>
    * Runtime.init(properties);
    *
    * Template template = Runtime.getTemplate("template.vm");
  @@ -91,6 +92,7 @@
    * Runtime.info(message);
    * Runtime.error(message);
    * Runtime.debug(message);
  + * </pre>
    *
    * The Runtime will also cooperate with external
    * systems like Turbine. Normally the Runtime will
  @@ -118,11 +120,13 @@
    * So in the case of Velocity cooperating with Turbine
    * the code might look something like the following:
    *
  + * <pre>
    * Runtime.setProperty(Runtime.RUNTIME_LOG, pathToVelocityLog);
    * Runtime.initializeLogger();
    *
    * Runtime.setProperty(Runtime.TEMPLATE_PATH, pathToTemplates);
    * Runtime.initializeTemplateLoader();
  + * </pre>
    *
    * It is simply a matter of setting the appropriate property
    * an initializing the matching sub system.
  
  
  

Reply via email to