[X] The "/JVCS Server/JVCSv2.43SalMys.exe" file could not be found or is not available. Please select another file.

swan is a suite of Java-based tools for working with XML. The focus is on a hybridized model that blends pattern-based and event-based models for XML processing, as well as supporting the leading tree-based models (DOM, JDOM, dom4j, XOM, etc.).


http://swan.sourceforge.net





Separate each tag with a space.

Release Date:

2003-04-01

Topics:

License:

Operating System:

Translations:

Intended Audience:

Programming Language:

Registered:

2002-02-01

Ratings and Reviews

Be the first to post a text review of swan. Rate and review a project by clicking thumbs up or thumbs down in the right column.

Project Feed

  • Code committed

    mbrennan committed patchset 2 of module xml-core to the swan CVS repository, changing 15 files

    posted by mbrennan 2337 days ago

  • Code committed

    mbrennan committed patchset 1 of module xml-core to the swan CVS repository, changing 68 files

    posted by mbrennan 2337 days ago

  • File released: /swan-output/1.0 beta 1/swan-output-10beta1.zip

    posted 2419 days ago

  • swan-output 1.0 beta 1 file released: swan-output-10beta1.zip

    posted 2420 days ago

  • Swan Output 1.0 alpha released

    Swan is a suite of Java-based tools for XML processing. The Swan Output library is a subset of the Swan suite that provides an API with a simple, readable syntax for programmatically generating XML output. The output is generated using standard SAX event handlers. To get a flavor of what this API affords the developer, consider the following snippet of XML: <department> <employee id="500"> <firstName>Kilgore</firstName> <lastName>Trout</lastName> </employee> </department> The code to produce this directly using SAX would be quite ugly and verbose, in spite of the simplicity of the markup being produced. Code to produce this using this API, though, could look something like this: ResultFactory factory = new ResultFactory(); DocumentResult result = factory.newDocumentResult(new StreamResult(System.out)); ElementResult dept = result.element("department"); ElementResult emp = dept.element("employee") emp.attribute("id", "500"); emp.element("firstName").text("Kilgore"); emp.element("lastName").text("Trout"); // output the accumulated result tree result.end(); Swan output can be downloaded from the project's website: http://sourceforge.net/projects/swan

    posted by mbrennan 2448 days ago

  • File released: /swan-output/1.0 alpha/swan-output.zip

    posted 2448 days ago

  • swan-output 1.0 alpha file released: swan-output.zip

    posted 2450 days ago

  • Code committed

    Anonymous committed patchset 1 of module CVSROOT to the swan CVS repository, changing 11 files

    posted by nobody 2843 days ago

  • Forum thread added

    Anonymous created the Welcome to Developers forum thread

    posted by nobody 2843 days ago

  • Forum thread added

    Anonymous created the Welcome to Help forum thread

    posted by nobody 2843 days ago

Rate and Review

Be the first person to add a text review.

Would you recommend this project?






<

Related Projects

Thanks for your rating!

Would you also like to write a review?





Skip Review