Package javolution.xml

Examples of javolution.xml.XmlOutputStream


     *
     * @see de.netseeker.ejoe.adapter.SerializeAdapter#write(java.lang.Object, java.io.OutputStream)
     */
    public void write( Object obj, OutputStream out ) throws Exception
    {
        XmlOutputStream writer = new XmlOutputStream();
        try
        {
            writer.setOutputStream( out );
            writer.writeObject( obj );
        }
        finally
        {
            writer.close();
        }
    }
View Full Code Here

TOP

Related Classes of javolution.xml.XmlOutputStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.