for (AbstractComponent c : getChildComponents())
{
if (c instanceof AbstractSwitchControlledComponent)
{
AbstractSwitchControlledComponent switchControlledComponent =
(AbstractSwitchControlledComponent) c;
if (switchControlledComponent.isEnabled())
{
dataTransformations += switchControlledComponent.getName() + ", ";
}
}
}
if (dataTransformations.length() > 2)