Examples of JarURIAdapter


Examples of org.jdesktop.wonderland.common.JarURIAdapter

     * @throw ClassCastException If the input data does not map to ModulePluginList
     * @throw JAXBException Upon error reading the XML data
     */
    public static ModulePluginList decode(Reader r, String server) throws JAXBException {
        Unmarshaller u = jaxbContext.createUnmarshaller();
        JarURIAdapter adapter = new JarURIAdapter(server);
        u.setAdapter(adapter);
        return (ModulePluginList)u.unmarshal(r);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.