OpenFormValidationDelegate delegate = new OpenFormValidationDelegate();
delegate.openValidationFile(formNode, elementMatch.getFile());
} else if (elementMatch.getGraphElement() instanceof Delegable) {
Delegable delegable = (Delegable) elementMatch.getGraphElement();
DelegableProvider provider = CustomizationRegistry.getProvider(delegable.getDelegationClassName());
String newConfig = provider.showConfigurationDialog(delegable);
if (newConfig != null) {
delegable.setDelegationConfiguration(newConfig);
}
} else if (elementMatch.getGraphElement() instanceof Subprocess) {
SubprocessDelegate delegate = new SubprocessDelegate();