Examples of DebugEntry


Examples of railo.runtime.config.DebugEntry

     
      String rtn = getString("admin",action,"returnVariable");
      railo.runtime.type.Query qry=
          new QueryImpl(new Collection.Key[]{KeyConstants._id,LABEL,IP_RANGE,READONLY,KeyConstants._type,CUSTOM},entries.length,rtn);
        pageContext.setVariable(rtn,qry);
        DebugEntry de;
        for(int i=0;i<entries.length;i++) {
            int row=i+1;
            de=entries[i];
            qry.setAtEL(KeyConstants._id,row,de.getId());
            qry.setAtEL(LABEL,row,de.getLabel());
            qry.setAtEL(IP_RANGE,row,de.getIpRangeAsString());
            qry.setAtEL(KeyConstants._type,row,de.getType());
            qry.setAtEL(READONLY,row,Caster.toBoolean(de.isReadOnly()));
            qry.setAtEL(CUSTOM,row,de.getCustom());
        }
    }
View Full Code Here

Examples of railo.runtime.debug.DebugEntry

    long diff=endTime-startTime;
    if(unit==UNIT_MICRO)diff/=1000;
    else if(unit==UNIT_MILLI)diff/=1000000;

    DebugEntry de = pc.getDebugger().getEntry(pc, pc.getCurrentPageSource(), startPos, endPos);
    de.updateExeTime((int) diff);
  }
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.