NRSUtils - 18/05/2005
---------------------
Copyright (C) 2004-2005 Nick Sydenham <nsydenham@yahoo.co.uk>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    
Homepage: http://www.nsydenham.net/

NRSUtils is a small collection of utility classes which I have written that
have proven useful in a number of contexts. They are provided here under the
terms of the GNU GPL so there is no warranty, but if you find any bugs I'll do
my best to fix them.

To see some examples try the ImageButtonTest and FileDialogTest classes. These
can be executed by typing 'ant ImageButtonTest' and 'ant FileDialogTest' if you
have ant installed. If not, place nrsutils.jar in your classpath and execute
either 'java nrs.util.test.ImageButtonTest' or
'java nrs.util.test.FileDialogTest'.

CSVParser
---------
Will parse a CSV file and inform a listening class about fields it finds.

FileDialog
----------
A FileDialog replacement for Java 1.1 with support for selecting multiple
files and adding extra components to the borders.

ImageButton
-----------
A button with an image that can be used in Java 1.1.

PostfixCalculator
-----------------
Will parse postfix notation to produce the answer.

PropertiesValidator
-------------------
Checks that Java source files' references to properties actually exist.

VerticalLayout
--------------
Acts the same as GridLayout except that components are arranged from top to bottom
and left to right.

More details are available in the Javadoc.

Building
--------
If you download the source and want to compile it you will need a copy of ant
to use the build script (build.xml). Ant can be obtained from
http://ant.apache.org/.

To compile: ant
To make a JAR: ant jar
