/**
* Process automatic name conflict resolution section, and memorize definitions.
* @param type {@link AutomaticNamingType} instance
*/
void handleAutomaticNaming(final AutomaticNamingType type) {
Forces forcesOuter = type.getForces();
if (forcesOuter != null) {
String[] forces = forcesOuter.getForce();
for (int i = 0; i < forces.length; i++) {
String elementName = forces[i];
_automaticNameResolutionForced.add(elementName);
}