2008/02/01

Java2Html converter

In the future I will post some java source codes here. Thus I am testing Java2Html converter. There is eclipse plugin as well. Here is an example of generated html:

/*
* Copyright (c) Xemantic
*/
package foo;

/**
* Test class.
*
<p>
* Created on Feb 1, 2008
*
*
@author Kazimierz Pogoda
*
@version $Id$
*/
public class Foo {

 
/**
   * Test static field.
   */
 
public static final String STATIC_FIELD = "42";

 
/**
   * Test method
   */
 
public void bar() {
   
System.out.println("Hello world");
 
}

}

No comments:

Post a Comment