Package com.adaptrex.tools.framework.javascript

Examples of com.adaptrex.tools.framework.javascript.SenchaTouch


          if (fw != null && fw.getVersion() != null)
            this.env.getExtFrameworks().put(folderName,fw);
        }
       
        if (folderName.startsWith("sencha")) {
          SenchaTouch fw = new SenchaTouch(env.getWebrootPath() + "/weblib/" + folderName);
          if (fw != null && fw.getVersion() != null)
            this.env.getSenchaTouchFrameworks().put(folderName,fw);
       
      }     
    }
   
View Full Code Here


        "Common JS Folder : " + webapp.getGlobalFolder() + CR +
        HR);

    AdaptrexJS adaptrex = webapp.getAdaptrex();
    ExtJS ext = webapp.getExt();
    SenchaTouch st = webapp.getSenchaTouch();
    String orm = webapp.getOrm();
    String presentation = webapp.getPresentation();
    String di = webapp.getDi();
    System.out.println(CR + "Frameworks" + CR + HR + CR +
        "AdaptrexJS       : " +
          (adaptrex == null ? "-" : adaptrex.getVersion() +
          " (" + adaptrex.getFolderName() + ")") + CR +
        "ExtJS            : "
          + (ext == null ? "-" : ext.getVersion() + " (" + ext.getFolderName() + ")") + CR +
        "Sencha Touch     : " +
          (st == null ? "-" : st.getVersion() + " (" + st.getFolderName() + ")") + CR +
        "ORM              : " + (orm == null ? "-" : orm) + CR +
        "Presentation     : " + (presentation == null ? "-" : presentation) + CR +
        "DI               : " + (di == null ? "-" : di) + CR +
        HR);
View Full Code Here

      System.out.println("ExtJS           : " + ext.getVersion() + " (" + ext.getFolderName() + ")");
    }

    Map<String, SenchaTouch> senchaTouchFrameworks = env.getSenchaTouchFrameworks();
    for (String key : senchaTouchFrameworks.keySet()) {
      SenchaTouch st = senchaTouchFrameworks.get(key);
      System.out.println("Sencha Touch    : " + st.getVersion() + " (" + st.getFolderName() + ")");
    }
    System.out.println(HR);

    System.out.println(CR + "Configured Webapps" + CR + HR);
    Map<String, Webapp> webapps = env.getWebapps();
View Full Code Here

    }
   
    if (senchaTouchFolder.equals(JavaScriptFramework.DEFAULT)) {
      Map<String,SenchaTouch> fw = env.getSenchaTouchFrameworks();
      if (fw.size() == 1) {
        SenchaTouch senchaTouch = (SenchaTouch) fw.get(fw.keySet().iterator().next());
        senchaTouchFolder = senchaTouch.getFolderName();
      }
    }
   
   
    /*
 
View Full Code Here

    }
   
    if (senchaTouchFolder.equals(JavaScriptFramework.DEFAULT)) {
      Map<String,SenchaTouch> fw = env.getSenchaTouchFrameworks();
      if (fw.size() == 1) {
        SenchaTouch senchaTouch = (SenchaTouch) fw.get(fw.keySet().iterator().next());
        senchaTouchFolder = senchaTouch.getFolderName();
      }
    }
   
   
    /*
 
View Full Code Here

TOP

Related Classes of com.adaptrex.tools.framework.javascript.SenchaTouch

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.