Esempio n. 1
0
    def __init__(
        self, config=None, pos=None, _name='tableset', version='1.1', **kwargs
    ):
        HomogeneousList.__init__(self, TableSchema)
        Element.__init__(self, config, pos, _name, **kwargs)

        self._version = version
Esempio n. 2
0
    def __init__(self, config=None, pos=None, _name='schema', **kwargs):
        HomogeneousList.__init__(self, Table)
        Element.__init__(self, config, pos, _name, **kwargs)

        self._name = None
        self._title = None
        self._description = None
        self._utype = None
Esempio n. 3
0
    def __init__(
        self, config=None, pos=None, _name='languageFeatures', **kwargs
    ):
        Element.__init__(self, config, pos, _name, **kwargs)
        HomogeneousList.__init__(self, LanguageFeature)

        self.type = kwargs.get('type')
        self._features = HomogeneousList(LanguageFeature)
Esempio n. 4
0
    def __init__(
        self, config=None, pos=None, _name='languageFeatures', **kwargs
    ):
        Element.__init__(self, config, pos, _name, **kwargs)
        HomogeneousList.__init__(self, LanguageFeature)

        self.type = kwargs.get('type')
        self._features = HomogeneousList(LanguageFeature)
Esempio n. 5
0
 def __init__(self, config=None, pos=None, _name='capabilities', **kwargs):
     Element.__init__(self, config=config, pos=pos, **kwargs)
     HomogeneousList.__init__(self, vr.Capability)
Esempio n. 6
0
 def __init__(self, config=None, pos=None, _name='results', **kwargs):
     HomogeneousList.__init__(self, Result)
     UWSElement.__init__(self, config, pos, _name, **kwargs)
Esempio n. 7
0
 def __init__(self, config=None, pos=None, _name='parameters', **kwargs):
     HomogeneousList.__init__(self, Parameter)
     UWSElement.__init__(self, config, pos, _name, **kwargs)
Esempio n. 8
0
File: tree.py Progetto: trjaffe/pyvo
 def __init__(self, config=None, pos=None, _name='jobs', **kwargs):
     HomogeneousList.__init__(self, JobSummary)
     UWSElement.__init__(self, config, pos, _name, **kwargs)
Esempio n. 9
0
 def __init__(self, config=None, pos=None, _name='parameters', **kwargs):
     """ """
     # Note: Above is a load-bearing empty comment.
     # Do not remove, or else the Sphinx build may fail (see PR #193).
     HomogeneousList.__init__(self, Parameter)
     UWSElement.__init__(self, config, pos, _name, **kwargs)
Esempio n. 10
0
 def __init__(self, config=None, pos=None, _name='results', **kwargs):
     HomogeneousList.__init__(self, Result)
     UWSElement.__init__(self, config, pos, _name, **kwargs)
Esempio n. 11
0
 def __init__(self, config=None, pos=None, _name='parameters', **kwargs):
     HomogeneousList.__init__(self, Parameter)
     UWSElement.__init__(self, config, pos, _name, **kwargs)