public final class FlaSourceFileAnalyser {
@SuppressWarnings("unchecked")
public static FlaSourceFileVo analysisFlaSourceFile(FlaFileMeta metaFlaSourceFile) {
FlaSourceFileVo flaSourceFileVo = new FlaSourceFileVo();
flaSourceFileVo.flaSourceName = metaFlaSourceFile.fileName;
Document confilgFile = XMLUtils.readXml(metaFlaSourceFile.filePath);
Element symbolNode = confilgFile.getRootElement().element("symbols");
for (Iterator symbolIt = symbolNode.elements("Include").iterator(); symbolIt.hasNext();) {