Package org.opcfoundation.ua.builtintypes

Examples of org.opcfoundation.ua.builtintypes.UnsignedByte


    public static ViewNodeAttributes fromGenerated(GeneratedUAView generated) {
        NodeAttributes nodeAttributes = NodeAttributes.fromGenerated(generated, NodeClass.View);

        boolean containsNoLoops = generated.isContainsNoLoops();
        UnsignedByte eventNotifier = new UnsignedByte(generated.getEventNotifier());

        return new ViewNodeAttributes(nodeAttributes, containsNoLoops, eventNotifier);
    }
View Full Code Here


    }

    public static ObjectNodeAttributes fromGenerated(GeneratedUAObject generated) {
        NodeAttributes nodeAttributes = NodeAttributes.fromGenerated(generated, NodeClass.Object);

        UnsignedByte eventNotifier = new UnsignedByte(generated.getEventNotifier());

        return new ObjectNodeAttributes(nodeAttributes, eventNotifier);
    }
View Full Code Here

TOP

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

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.