/**
 * This is a test for hilighting comments ...
 */

public class Comment
{

  /**
   * This is a <code>test</code> of processing comments
   *
   * @blah this is <code>stuff</code> that should be formatted  */
  public void blah ()
    {
      System.out.println("Hello world! ...");      
    }

  /*
   * @foo this is a test
   */
  public void foo ()
    {
      System.out.println("Hello world! ...");      
    }

  /*$
   * @bar this is a test
   */
  public void bar ()
    {
      System.out.println("Hello world! ...");      
    }

  /**
   * @main this is a test
   */
  public static void main (String[] args)
    {
      System.out.println("Hello world! ...");      
    }
}
