Example #1
0
 @Override
 public IConfigurationElement[] getChildren(String name) throws InvalidRegistryObjectException {
   List<XMLConfigElement> result = new ArrayList<XMLConfigElement>();
   for (XMLConfigElement e : children) {
     if (name.equals(e.getName())) result.add(e);
   }
   return result.toArray(new XMLConfigElement[result.size()]);
 }