<http://java.apache.org/ecs/>

Element Construction Set (ECS) is a Java API for generating elements for
various markup languages it directly supports HTML 4.0 and XML, but can
easily be extended to create tags for any markup language. This version
fixes some bugs, re-arranges the package layout adds optional Pretty
Printing of the output and is a final 1.0 release!

Instead of doing something like this in your servlet:

    out.println("<B><I>");
    out.println("hello world!");
    out.println("</I></B>");

You can do this in your servlet:

    B b = new B().addElement (new I("hello world!"));
    out.println ( b.toString() );

This creates the HTML on the output stream:

    <B>hello world!</B>

<http://java.apache.org/ecs/>

-jon

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to