use of net.jangaroo.exml.parser.ExmlToConfigClassParser in project jangaroo-tools by CoreMedia.
the class ExmlSourceFile method parseExmlToConfigClass.
public ConfigClass parseExmlToConfigClass() {
try {
ConfigClass configClass = new ExmlToConfigClassParser().parseExmlToConfigClass(getSourceFile());
configClass.setFullName(getConfigClassName());
configClass.setComponentClassName(getTargetClassName());
return configClass;
} catch (IOException e) {
// TODO Log and continue?
throw new ExmlcException("could not read EXML file", e);
}
}
Aggregations