rdonkin 01/03/28 12:40:47 Modified: example README.txt Log: changed to reflect classes added to /example Revision Changes Path 1.2 +27 -10 jakarta-ecs/example/README.txt Index: README.txt =================================================================== RCS file: /home/cvs/jakarta-ecs/example/README.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- README.txt 2000/03/27 03:21:08 1.1 +++ README.txt 2001/03/28 20:40:47 1.2 @@ -1,14 +1,31 @@ -TestBed.java: - -The TestBed.java file is our development and testing class. It has code in it -that takes advantage of almost every single aspect of ECS so that we can stress -test the framework and look for errors. Please note that you will need to link -against the ../lib/xerces.jar file in order to compile and use it. +Example Code +You can use these classes to get some working example code on how to build elements +using ECS. We suggest that you create your own testing class and then copy/paste +code from these classes into your own class to do your testing/learning. +These classes are written as applications and output to stdout. So, you can +compile them and run them from the command line. -If it does not compile or run properly for you, then please do not take this as +Notes: +1. Please note that you may need to link against the ../lib/xerces-x.x.x.jar file in +order to compile and use some of these examples. +2. If any of these classes do not compile or run properly for you, then please do not take this as a sign that ECS is not working. Chances are that this file is either broken or is not in a working state for some reason or another. +3. The right place to ask questions is the [EMAIL PROTECTED] mailing. Go ahead and +subscribe - but please read the guidelines on the website (jakarta.apache.org) first :) + +Classes +TestBed.java: +- The TestBed.java file is our main development and testing class. It has code in it that +takes advantage of almost every single core aspect of ECS so that we can stress test the +framework and look for errors. This uses the core org.apache.ecs package together +with org.apache.ecs.html and org.apache.ecs.xhtml. Most of these examples are html-based. + +JSPTestBed: +- This class demonstrates and tests jsp element creation using package org.apache.ecs.jsp. + +VXMLTestBed: +- This class demonstrates and tests vxml element creation using package org.apache.ecs.vxml. -You can use this class to get some working example code on how to build elements -using ECS. We suggest that you create your own testing class and then copy/paste -code from this class to your own class to do your testing/learning. \ No newline at end of file +WMLTestBed: +- This class demonstrates and tests wml element creation using package org.apache.ecs.wml. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
