public IReconnectionFeature getReconnectionFeature(
IReconnectionContext context) {
for (FeatureContainer container : containers) {
Object o = container.getApplyObject(context);
if (o != null && container.canApplyTo(o) && container instanceof ConnectionFeatureContainer) {
IReconnectionFeature feature = ((ConnectionFeatureContainer)container).getReconnectionFeature(this);
if (feature == null) {
break;
}
return feature;
}