Package org.opcfoundation.ua.builtintypes

Examples of org.opcfoundation.ua.builtintypes.XmlElement


            JAXBElement<?> jaxbElement = JAXBElement.class.cast(value);

            StringWriter sw = new StringWriter();
            marshaller.marshal(jaxbElement, sw);

            XmlElement xmlElement = new XmlElement(sw.toString());
            XmlDecoder xmlDecoder = new XmlDecoder(xmlElement, ENCODER_CONTEXT);
            Object o = xmlDecoder.getVariantContents();

            return new DataValue(new Variant(o));
        } catch (Throwable t) {
View Full Code Here

TOP

Related Classes of org.opcfoundation.ua.builtintypes.XmlElement

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.