196 Public method to check, if a style is a string style. |
198 Public method to check, if a style is a string style. |
197 |
199 |
198 @return flag indicating a string style (boolean) |
200 @return flag indicating a string style (boolean) |
199 """ |
201 """ |
200 return True |
202 return True |
|
203 |
|
204 def keywords(self, kwSet): |
|
205 """ |
|
206 Public method to get the keywords. |
|
207 |
|
208 @param kwSet number of the keyword set (integer) |
|
209 """ |
|
210 keywords_ = Preferences.getEditorKeywords(self.language()) |
|
211 if keywords_: |
|
212 kw = keywords_[kwSet] |
|
213 if kw == "": |
|
214 return None |
|
215 else: |
|
216 return kw |
|
217 else: |
|
218 return self.defaultKeywords(kwSet) |