You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by rd...@apache.org on 2003/08/14 20:23:44 UTC

cvs commit: jakarta-commons/digester/src/examples/api readme.txt

rdonkin     2003/08/14 11:23:44

  Added:       digester/src/examples/api readme.txt
  Log:
  Added Digester examples. Submitted by Simon Kitching.
  
  Revision  Changes    Path
  1.1                  jakarta-commons/digester/src/examples/api/readme.txt
  
  Index: readme.txt
  ===================================================================
  The subdirectories of this directory provide examples of how to use
  the Apache Digester's java API.
  
  With the API approach, java code is used to configure the digester with
  a set of rules to execute when xml is processed. It is these rules that
  determine how the input xml is mapped into a tree of java objects.
  
  An alternative is to use the "xmlrules" digester extension, which allows
  the digester rules to be configured via an xml file. This allows the
  mapping between input xml and java objects to be modified without
  recompilation of any source code.