* @param searchRoot
* @return a List of Components which are added in parent using the name childName, that is, where something like container.put(childName,...) has taken place
*/
public static List<Component> findComponentsWithChildName(final String childName, Component searchRoot) {
final List<Component> founds = new ArrayList<Component>();
ComponentTraverser ct = new ComponentTraverser(new ComponentVisitor(){
public boolean visit(Component comp, UserRequest ureq) {
if(comp.getParent()==null){
return true;
}
if (comp.getParent().getComponent(childName) == comp) {