Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/incubator-guacamole-client/pull/184#discussion_r143105628
--- Diff:
guacamole/src/main/java/org/apache/guacamole/extension/ExtensionManifest.java
---
@@ -356,6 +361,32 @@ public void setAuthProviders(Collection<String>
authProviders) {
}
/**
+ * Returns the classnames of all listener classes within the extension.
+ * These classnames are defined within the manifest by the "listeners"
+ * property as an array of strings, where each string is a listener
+ * class name.
+ *
+ * @return
+ * a collection of classnames for all listeners within the
extension
+ */
+ public Collection<String> getListeners() {
+ return listeners;
+ }
+
+ /**
+ * Sets the classnames of all listener classes within the extension.
+ * These classnames are defined within the manifest by the "listeners"
+ * property as an array of strings, where each string is a listener
+ * class name.
+ *
+ * @param listeners
+ * a collection of classnames for all listeners within the
extension
--- End diff --
Should be sentence case, plus a period.
---