コード例 #1
0
ファイル: document.py プロジェクト: BhallaLab/moose-package
    def mkparam(self, method, pdef, object):
        """
        Expand list parameters into individual parameters each with the type
        information. This is because in document arrays are simply
        multi-occurrence elements.

        """
        if isinstance(object, (list, tuple)):
            tags = []
            for item in object:
                tags.append(self.mkparam(method, pdef, item))
            return tags
        return Binding.mkparam(self, method, pdef, object)
コード例 #2
0
ファイル: document.py プロジェクト: BhallaLab/moose-gui
    def mkparam(self, method, pdef, object):
        """
        Expand list parameters into individual parameters each with the type
        information. This is because in document arrays are simply
        multi-occurrence elements.

        """
        if isinstance(object, (list, tuple)):
            tags = []
            for item in object:
                tags.append(self.mkparam(method, pdef, item))
            return tags
        return Binding.mkparam(self, method, pdef, object)
コード例 #3
0
ファイル: document.py プロジェクト: abierbaum/twisted-suds
 def mkparam(self, method, pdef, object):
     #
     # Expand list parameters into individual parameters
     # each with the type information.  This is because in document
     # arrays are simply unbounded elements.
     #
     if isinstance(object, (list, tuple)):
         tags = []
         for item in object:
             tags.append(self.mkparam(method, pdef, item))
         return tags
     else:
         return Binding.mkparam(self, method, pdef, object)
コード例 #4
0
 def mkparam(self, method, pdef, object):
     #
     # Expand list parameters into individual parameters
     # each with the type information.  This is because in document
     # arrays are simply unbounded elements.
     #
     if isinstance(object, (list, tuple)):
         tags = []
         for item in object:
             tags.append(self.mkparam(method, pdef, item))
         return tags
     else:
         return Binding.mkparam(self, method, pdef, object)
コード例 #5
0
    def mkparam(self, method, pdef, object):
        #
        # Expand list parameters into individual parameters
        # each with the type information.  This is because in document
        # arrays are simply multi-occurrence elements.
        #
        if object == None:
            # No value has been set for this parameter. If it is optional we
            # can ignore it. Otherwise we raise an exception.
            if not pdef[1].optional():
                raise Exception('Error calling %s: '
                                'required parameter "%s" not set.' %
                                (method[0], pdef[0]))
            return

        if isinstance(object, (list, tuple)):
            tags = []
            for item in object:
                tags.append(self.mkparam(method, pdef, item))
            return tags
        else:
            return Binding.mkparam(self, method, pdef, object)
コード例 #6
0
ファイル: document.py プロジェクト: emergence/suds-philpem
    def mkparam(self, method, pdef, object):
        #
        # Expand list parameters into individual parameters
        # each with the type information.  This is because in document
        # arrays are simply multi-occurrence elements.
        #
        if object == None:
            # No value has been set for this parameter. If it is optional we
            # can ignore it. Otherwise we raise an exception.
            if not pdef[1].optional():
                raise Exception('Error calling %s: '
                        'required parameter "%s" not set.' % (method[0], pdef[0])
                        )
            return

        if isinstance(object, (list, tuple)):
            tags = []
            for item in object:
                tags.append(self.mkparam(method, pdef, item))
            return tags
        else:
            return Binding.mkparam(self, method, pdef, object)