Examples of watchedExtensions()


Examples of railo.runtime.listener.JavaSettings.watchedExtensions()

    JavaSettings js = ac.getJavaSettings();
    StructImpl jsSct = new StructImpl();
    jsSct.put("loadCFMLClassPath",js.loadCFMLClassPath());
    jsSct.put("reloadOnChange",js.reloadOnChange());
    jsSct.put("watchInterval",new Double(js.watchInterval()));
    jsSct.put("watchExtensions",ListUtil.arrayToList(js.watchedExtensions(),","));
    Resource[] reses = js.getResources();
    StringBuilder sb=new StringBuilder();
    for(int i=0;i<reses.length;i++){
      if(i>0)sb.append(',');
      sb.append(reses[i].getAbsolutePath());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.