How to use the installer.open62541--v100.etc.appio.tools.open62541.v100.python-scripts.nodeset_compiler.datatypes.Value.__init__ function in installer

To help you get started, we’ve selected a few installer examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github appioframework / APPIOframework / installer / open62541--v1.0.0 / etc / appio / tools / open62541 / v1.0.0 / python-scripts / nodeset_compiler / datatypes.py View on Github external
def __init__(self, xmlvalue=None):
        Value.__init__(self)
        self.locale = None
        self.text = None
        if xmlvalue:
            self.parseXML(xmlvalue)
github appioframework / APPIOframework / installer / open62541--v1.0.0 / etc / appio / tools / open62541 / v1.0.0 / python-scripts / nodeset_compiler / datatypes.py View on Github external
def __init__(self, idstring=None):
        Value.__init__(self)
        self.i = None
        self.b = None
        self.g = None
        self.s = None
        self.ns = 0
        self.setFromIdString(idstring)
github appioframework / APPIOframework / installer / open62541--v1.0.0 / etc / appio / tools / open62541 / v1.0.0 / python-scripts / nodeset_compiler / datatypes.py View on Github external
def __init__(self, xmlelement=None):
        Value.__init__(self)
        self.ns = 0
        self.name = None
        if xmlelement:
            self.parseXML(xmlelement)