* Path to xml config.
*/
public void start(String pathToXml) {
try {
SaxfwlDocument saxfwlDoc = SaxfwlDocument.Factory.parse(new File(pathToXml));
RootType saxfwl = saxfwlDoc.getSaxfwl();
config = parseConfig(saxfwl.getConfig());
for (ClassType classType : saxfwl.getClass1List()) {
for (Version version : config.getVersions()) {
if (classContainsSpecificForVersion(classType, version)) {
String className = Utils.createClassName(classType.getName(), version);