Package railo.runtime.dump

Examples of railo.runtime.dump.DumpProperties


    if(hide!=null && "all".equalsIgnoreCase(hide.trim()))hide=null;
   
    Set setShow=(show!=null)?ListUtil.listToSet(show.toLowerCase(),",",true):null;
    Set setHide=(hide!=null)?ListUtil.listToSet(hide.toLowerCase(),",",true):null;
   
    DumpProperties properties=new DumpProperties((int)maxLevel,setShow,setHide,(int)keys,metainfo,showUDFs);
    DumpData dd = DumpUtil.toDumpData(object, pc,(int)maxLevel,properties);
   
    if(!StringUtil.isEmpty(label)) {
      DumpTable table=new DumpTable("#ffffff","#cccccc","#000000");
      table.appendRow(1,new SimpleDumpData(label));
View Full Code Here


      DumpWriter writer=pc.getConfig().getDumpWriter(format,defType);
     
      Set setShow=(show!=null)?ListUtil.listToSet(show.toLowerCase(),",",true):null;
      Set setHide=(hide!=null)?ListUtil.listToSet(hide.toLowerCase(),",",true):null;
     
      DumpProperties properties=new DumpProperties((int)maxLevel,setShow,setHide,(int)keys,metainfo,showUDFs);
      DumpData dd = DumpUtil.toDumpData(object, pc,(int)maxLevel,properties);
     
      if(!StringUtil.isEmpty(label)) {
        DumpTable table=new DumpTable("#ffffff","#cccccc","#000000");
        table.appendRow(1,new SimpleDumpData(label));
View Full Code Here

TOP

Related Classes of railo.runtime.dump.DumpProperties

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.