                              QAParadigm
             program for question-answer paradigm experiments
                    http://qaparadigm.sourceforge.net

                     Copyright 2007, 2009 Steve White
                    stevan_white@users.sourceforge.net

============================= License =============================
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 3 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, If not, see <http://www.gnu.org/licenses/>

For the full text of the license, see the file doc/LICENSE

========================== Reporting Bugs =========================
In the eventuality that you find a bug, or if you think the program
would benefit from a comment, please register a bug report or feature
request on the project site.

========================= Documentation ===========================
User's documentation is in the directory doc/.

Developer's documentation is in the code, and can be extracted using
javadoc (see below).

===================== How to run QAParadigm =======================
If the executable JAR file "QAParadigm.jar" is already present,
the program can be started in several different ways, to taste.

* double-click on its icon (Windows or Mac OS)

* or from a command-line terminal cd to the QAParadigm, type
		ant run

* or from a command-line terminal cd to the QAParadigm, type
		java -jar QAParadigm.jar

===================== How to use QAParadigm =======================
See the document
	doc/use

==================== How to build QAParadigm ======================
To build QAParadigm, you need an installation of the Java SDK 1.5 or
greater.  This should include the "ant" program.

From a command-line terminal, go to the QAParadigm directory, and type
	ant
This should result in an executable JAR file in that directory:
	QAParadigm.jar

To build the developer's documentation
	ant doc
This will put HTML documentation in the html/ sub-directory.

