Package vo

Examples of vo.FlaSourceFileVo


  // == Utils function
  // =============
  @SuppressWarnings("unchecked")
  private FlaSourceFileVo findFlaSourceFileVoBySymbolName(String symbolName) {
    for (Iterator flaSourceFileVoIt = flaSourceFileVoList.iterator(); flaSourceFileVoIt.hasNext();) {
      FlaSourceFileVo flaSourceFileVo = (FlaSourceFileVo) flaSourceFileVoIt.next();
      if (flaSourceFileVo.isSymbolInCurrentFile(symbolName)) {
        return flaSourceFileVo;
      }
    }
    return null;
  }
View Full Code Here


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();) {
View Full Code Here

TOP

Related Classes of vo.FlaSourceFileVo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.