Package javolution.xml

Examples of javolution.xml.XmlInputStream


     *
     * @see de.netseeker.ejoe.adapter.SerializeAdapter#read(java.io.InputStream)
     */
    public Object read( InputStream in ) throws Exception
    {
        XmlInputStream reader = new XmlInputStream();
        Object obj = null;
        try
        {
            reader.setInputStream( in );
            obj = reader.readObject();
        }
        finally
        {
            reader.close();
        }

        return obj;
    }
View Full Code Here

TOP

Related Classes of javolution.xml.XmlInputStream

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.