89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
return Boolean(this.oMainDic);
}
setExtendedDictionary (dictionary, sPath="", bActivate=true) {
// returns true if the dictionary is loaded
this.oExtendedDic = this._loadDictionary(dictionary, sPath);
this.bExtendedDic = (bActivate) ? Boolean(this.oExtendedDic) : false;
return this.bExtendedDic;
}
setCommunityDictionary (dictionary, sPath="", bActivate=true) {
// returns true if the dictionary is loaded
this.oCommunityDic = this._loadDictionary(dictionary, sPath);
this.bCommunityDic = (bActivate) ? Boolean(this.oCommunityDic) : false;
return this.bCommunityDic;
}
setPersonalDictionary (dictionary, sPath="", bActivate=true) {
// returns true if the dictionary is loaded
this.oPersonalDic = this._loadDictionary(dictionary, sPath);
this.bPersonalDic = (bActivate) ? Boolean(this.oPersonalDic) : false;
return this.bPersonalDic;
}
activateExtendedDictionary () {
this.bExtendedDic = Boolean(this.oExtendedDic);
}
activateCommunityDictionary () {
|
|
|
|
|
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
return Boolean(this.oMainDic);
}
setExtendedDictionary (dictionary, sPath="", bActivate=true) {
// returns true if the dictionary is loaded
this.oExtendedDic = this._loadDictionary(dictionary, sPath);
this.bExtendedDic = (bActivate) ? Boolean(this.oExtendedDic) : false;
return Boolean(this.oExtendedDic);
}
setCommunityDictionary (dictionary, sPath="", bActivate=true) {
// returns true if the dictionary is loaded
this.oCommunityDic = this._loadDictionary(dictionary, sPath);
this.bCommunityDic = (bActivate) ? Boolean(this.oCommunityDic) : false;
return Boolean(this.oCommunityDic);
}
setPersonalDictionary (dictionary, sPath="", bActivate=true) {
// returns true if the dictionary is loaded
this.oPersonalDic = this._loadDictionary(dictionary, sPath);
this.bPersonalDic = (bActivate) ? Boolean(this.oPersonalDic) : false;
return Boolean(this.oPersonalDic);
}
activateExtendedDictionary () {
this.bExtendedDic = Boolean(this.oExtendedDic);
}
activateCommunityDictionary () {
|