SuperProperties properties = (SuperProperties) provider.getProperties();
if (properties.size() > 0) {
out.println("Supports the following properties");
out.println(" || Property Name || Description ||");
for (Object key : properties.keySet()) {
if (key instanceof String) {
String name = (String) key;
Map<String, String> attributes = properties.getAttributes(name);
if (!attributes.containsKey("hidden")) {