home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / exml.lha / exml / main / tree_parser / xml_text.e < prev    next >
Text File  |  1999-04-13  |  839b  |  29 lines

  1. indexing
  2.     description: "representing the textual content (termed character data in XML) of an Element or Attr.";
  3.     status:            "See notice at end of class.";
  4.     author:            "Andreas Leitner";
  5.  
  6. class 
  7.         XML_TEXT
  8. inherit
  9.         XML_CHARACTER_DATA
  10. creation
  11.     make_from_content
  12. feature
  13.     
  14. end -- XML_TEXT
  15.  
  16. --|-------------------------------------------------------------------------
  17. --| eXML, Eiffel XML Parser Toolkit
  18. --| Copyright (C) 1999  Andreas Leitner
  19. --| See the file forum.txt included in this package for licensing info.
  20. --|
  21. --| Comments, Questions, Additions to this library? please contact:
  22. --|
  23. --| Andreas Leitner
  24. --| Arndtgasse 1/3/5
  25. --| 8010 Graz
  26. --| Austria
  27. --| email: andreas.leitner@teleweb.at
  28. --| web: http://exml.dhs.org
  29. --|-------------------------------------------------------------------------