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

  1. indexing
  2.     description:"Objects representing a XML-end-tag"
  3.     status:        "See notice at end of class."
  4.     author:        "Andreas Leitner"
  5. class
  6.     XML_END_TAG
  7. inherit
  8.     XML_TAG
  9.         redefine
  10.             out
  11.         end
  12. creation
  13.     make_from_c
  14.  
  15. feature
  16.     out: STRING is
  17.         do
  18.             !! Result.make (0)
  19.             Result.append ("</")
  20.             Result.append (name)
  21.             Result.append (">")
  22.         end
  23.  
  24.  
  25. end -- class XML_END_TAG
  26. --|-------------------------------------------------------------------------
  27. --| eXML, Eiffel XML Parser Toolkit
  28. --| Copyright (C) 1999  Andreas Leitner
  29. --| See the file forum.txt included in this package for licensing info.
  30. --|
  31. --| Comments, Questions, Additions to this library? please contact:
  32. --|
  33. --| Andreas Leitner
  34. --| Arndtgasse 1/3/5
  35. --| 8010 Graz
  36. --| Austria
  37. --| email: andreas.leitner@teleweb.at
  38. --| web: http://exml.dhs.org
  39. --|-------------------------------------------------------------------------