/**
  * Returns an array of names prefixed by the specified name. The array is sorted as follows. If
  * there is no config entry <code>{@value #PAR_INCLUDE}+"."+name</code> or <code>
  * {@value #PAR_ORDER}+"."+name</code> then the order is alphabetical. Otherwise this entry
  * defines the order. For more information see {@link Configuration}.
  *
  * @param name the component type (i.e., the prefix)
  * @return the full property names in the order specified by the configuration
  */
 public static String[] getNames(String name) {
   return config.getNames(name);
 }