コード例 #1
0
ファイル: _Researcher.py プロジェクト: daleathan/geddiff
    def __init__(self):
        """Initializes the Researcher object"""

        LocationBase.__init__(self)
        self.name = ""
        self.addr = ""
        self.email = ""
コード例 #2
0
ファイル: _Researcher.py プロジェクト: daleathan/geddiff
    def __init__(self):
        """Initializes the Researcher object"""

        LocationBase.__init__(self )
        self.name = ""
        self.addr = ""
        self.email = ""
コード例 #3
0
ファイル: _Address.py プロジェクト: daleathan/geddiff
 def __init__(self, source=None):
     """Creates a new Address instance, copying from the source
     if provided"""
     SecondaryObject.__init__(self)
     PrivacyBase.__init__(self, source)
     SourceBase.__init__(self, source)
     NoteBase.__init__(self, source)
     DateBase.__init__(self, source)
     LocationBase.__init__(self, source)
コード例 #4
0
    def __init__(self, source=None):
        """
        Creates a Location object, copying from the source object if it exists.
        """

        SecondaryObject.__init__(self)
        LocationBase.__init__(self, source)
        if source:
            self.parish = source.parish
        else:
            self.parish = ""
コード例 #5
0
ファイル: _Location.py プロジェクト: daleathan/geddiff
    def __init__(self, source=None):
        """
        Creates a Location object, copying from the source object if it exists.
        """

        SecondaryObject.__init__(self)
        LocationBase.__init__(self, source)
        if source:
            self.parish = source.parish
        else:
            self.parish = ""