224 else: |
224 else: |
225 return kw |
225 return kw |
226 else: |
226 else: |
227 return self.defaultKeywords(kwSet) |
227 return self.defaultKeywords(kwSet) |
228 |
228 |
|
229 def maximumKeywordSet(self): |
|
230 """ |
|
231 Public method to get the maximum keyword set. |
|
232 |
|
233 Note: A return value of 0 indicates to determine this dynamically. |
|
234 |
|
235 @return maximum keyword set (integer) |
|
236 """ |
|
237 return 0 |
|
238 |
229 def lexerName(self): |
239 def lexerName(self): |
230 """ |
240 """ |
231 Public method to return the lexer name. |
241 Public method to return the lexer name. |
232 |
242 |
233 @return lexer name (string) |
243 @return lexer name (string) |