result.add(s);
}
} else if (s instanceof ComponentDeclaration && node instanceof ComponentDeclaration) {
} else if (s instanceof ComponentReference && node instanceof ComponentReference) {
ComponentReference cr1 = (ComponentReference) node;
ComponentReference cr2 = (ComponentReference) s;
if (cr1.getName().equals(cr2.getName())) {
result.add(s);
}
} else if (s instanceof RutaAction && node instanceof RutaAction) {
RutaAction a1 = (RutaAction) node;
RutaAction a2 = (RutaAction) s;