39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  | 
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  | 
-
-
+
+
  | 
        dOpt = Options.load(xCurCtx)
        gce.setOptions(dOpt)
        # store for results of big paragraphs
        self.dResult = {}
        self.nMaxRes = 1500
        self.lLastRes = deque(maxlen=self.nMaxRes)
        self.nRes = 0
        oSpellChecker = gce.getSpellChecker();
        oSpellChecker.setPersonalDictionary("fr.personal.json")
        #oSpellChecker = gce.getSpellChecker();
        #oSpellChecker.setPersonalDictionary("fr.personal.json")
    # XServiceName method implementations
    def getServiceName (self):
        return self.ImplementationName
    # XServiceInfo method implementations
    def getImplementationName (self):
 |