335 |
335 |
336 @return flag indicating support for time commands |
336 @return flag indicating support for time commands |
337 @rtype bool |
337 @rtype bool |
338 """ |
338 """ |
339 return True |
339 return True |
|
340 |
|
341 def hasDocumentationUrl(self): |
|
342 """ |
|
343 Public method to check, if the device has a configured documentation |
|
344 URL. |
|
345 |
|
346 @return flag indicating a configured documentation URL |
|
347 @rtype bool |
|
348 """ |
|
349 return bool(self.getDocumentationUrl()) |
|
350 |
|
351 def getDocumentationUrl(self): |
|
352 """ |
|
353 Public method to get the device documentation URL. |
|
354 |
|
355 @return documentation URL of the device |
|
356 @rtype str |
|
357 """ |
|
358 return "" |