* Config xml element.
*/
protected GlobalConfig parseConfig(ConfigType configType) {
List<Version> versionList = new ArrayList<Version>();
for (VersionType verType : configType.getVersionList()) {
versionList.add(new Version(verType.getBaseClass(), verType.getInclude(), verType.getStringValue()));
}
String header = configType.getHeader();
String namespace = configType.getNamespace();
String outpathBaseInc = Util.replaceEnvVar(configType.getOutpathBaseInc());
String outpathBaseSrc = Util.replaceEnvVar(configType.getOutpathBaseSrc());