Class DocHello

java.lang.Object
  |
  +--DocHello

public class DocHello
extends java.lang.Object

DocHello.java by Richard J. Davies from `Introductory Java for Scientists and Engineers' chapter: `Advanced Java' section: `Javadoc' This is a fully documented Hello World program. Use `javadoc' on it to generate the HTML documentation.

Version:
1.0
Author:
Richard J. Davies

Field Summary
static java.lang.String message
          This is the message used by the main method
 
Constructor Summary
DocHello()
           
 
Method Summary
static void main(java.lang.String[] argv)
          This is the main method which actually prints the message on screen
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

message

public static final java.lang.String message
This is the message used by the main method
See Also:
main(java.lang.String[])
Constructor Detail

DocHello

public DocHello()
Method Detail

main

public static void main(java.lang.String[] argv)
This is the main method which actually prints the message on screen
Parameters:
argv - Required argument for interpreter
Returns:
nothing