Building Parsers with Java

sjm.examples.preface
Class ShowHello

java.lang.Object
  |
  +--sjm.examples.preface.ShowHello

public class ShowHello
extends java.lang.Object

This is a "Hello world" program. Once you get this working on your computer, you can get any example in this book to work.


Constructor Summary
ShowHello()
           
 
Method Summary
static void main(java.lang.String[] args)
          Create a little parser and use it to recognize "Hello world!".
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ShowHello

public ShowHello()
Method Detail

main

public static void main(java.lang.String[] args)
Create a little parser and use it to recognize "Hello world!".

by Steve Metsker