Package railo.runtime.dump

Examples of railo.runtime.dump.DumpTable.appendRow()


        String[] arrCode = ListUtil.listToStringArray(strCode, '\n');
        arrCode=ListUtil.trim(arrCode);
        DumpTable code=new DumpTable("#ff9900","#FFCC00","#000000");
       
        for(int i=0;i<arrCode.length;i++) {
          code.appendRow(i==2?1:0,new SimpleDumpData(arrCode[i]));
        }
        htmlBox.appendRow(1,new SimpleDumpData("Code"),code);

      }
            catch (PageException e) {}
View Full Code Here


    String[] arrST = ListUtil.listToStringArray(strST, '\n');
    arrST=ListUtil.trim(arrST);
    DumpTable st=new DumpTable("#ff9900","#FFCC00","#000000");
   
    for(int i=0;i<arrST.length;i++) {
      st.appendRow(i==0?1:0,new SimpleDumpData(arrST[i]));
    }
    htmlBox.appendRow(1,new SimpleDumpData("Java Stacktrace"),st);

    return htmlBox;
 
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.