< prev index next >

src/demo/share/java2d/J2DBench/src/j2dbench/report/HTMLSeriesReporter.java

Print this page


   1 /*
   2  * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
   3  *
   4  * Redistribution and use in source and binary forms, with or without
   5  * modification, are permitted provided that the following conditions
   6  * are met:
   7  *
   8  *   - Redistributions of source code must retain the above copyright
   9  *     notice, this list of conditions and the following disclaimer.
  10  *
  11  *   - Redistributions in binary form must reproduce the above copyright
  12  *     notice, this list of conditions and the following disclaimer in the
  13  *     documentation and/or other materials provided with the distribution.
  14  *
  15  *   - Neither the name of Oracle nor the names of its
  16  *     contributors may be used to endorse or promote products derived
  17  *     from this software without specific prior written permission.
  18  *
  19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  20  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR


 451             "display using logarithmic scale       \n"   +
 452             "    -resultxml | -xml <xml file path> "     +
 453             "path to result XML                    \n"   +
 454             "    -group | -g  <level>              "     +
 455             "group-level for tests                 \n"   +
 456             "                                      "     +
 457             " [ 1 , 2 , 3 or 4 ]                   \n"   +
 458             "    -analyzermode | -am               "     +
 459             "mode to be used for finding score     \n"   +
 460             "                                      "     +
 461             " [ BEST , WORST , AVERAGE , MIDAVG ]  ";
 462         System.out.println(usage);
 463         System.exit(0);
 464     }
 465 
 466     static boolean logScale = false;
 467 
 468     /**
 469      * main
 470      */
 471     public static void main(String args[]) {
 472 
 473         String resDir = ".";
 474         ArrayList results = new ArrayList();
 475         int group = 2;
 476 
 477         /* ---- Analysis Mode ----
 478             BEST    = 1;
 479             WORST   = 2;
 480             AVERAGE = 3;
 481             MIDAVG  = 4;
 482          ------------------------ */
 483         int analyzerMode = 4;
 484 
 485         try {
 486 
 487             for (int i = 0; i < args.length; i++) {
 488                 if (args[i].startsWith("-ls")) {
 489                     logScale = true;
 490                 } else if (args[i].startsWith("-results") ||
 491                     args[i].startsWith("-r"))


   1 /*
   2  * Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved.
   3  *
   4  * Redistribution and use in source and binary forms, with or without
   5  * modification, are permitted provided that the following conditions
   6  * are met:
   7  *
   8  *   - Redistributions of source code must retain the above copyright
   9  *     notice, this list of conditions and the following disclaimer.
  10  *
  11  *   - Redistributions in binary form must reproduce the above copyright
  12  *     notice, this list of conditions and the following disclaimer in the
  13  *     documentation and/or other materials provided with the distribution.
  14  *
  15  *   - Neither the name of Oracle nor the names of its
  16  *     contributors may be used to endorse or promote products derived
  17  *     from this software without specific prior written permission.
  18  *
  19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  20  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR


 451             "display using logarithmic scale       \n"   +
 452             "    -resultxml | -xml <xml file path> "     +
 453             "path to result XML                    \n"   +
 454             "    -group | -g  <level>              "     +
 455             "group-level for tests                 \n"   +
 456             "                                      "     +
 457             " [ 1 , 2 , 3 or 4 ]                   \n"   +
 458             "    -analyzermode | -am               "     +
 459             "mode to be used for finding score     \n"   +
 460             "                                      "     +
 461             " [ BEST , WORST , AVERAGE , MIDAVG ]  ";
 462         System.out.println(usage);
 463         System.exit(0);
 464     }
 465 
 466     static boolean logScale = false;
 467 
 468     /**
 469      * main
 470      */
 471     public static void main(String[] args) {
 472 
 473         String resDir = ".";
 474         ArrayList results = new ArrayList();
 475         int group = 2;
 476 
 477         /* ---- Analysis Mode ----
 478             BEST    = 1;
 479             WORST   = 2;
 480             AVERAGE = 3;
 481             MIDAVG  = 4;
 482          ------------------------ */
 483         int analyzerMode = 4;
 484 
 485         try {
 486 
 487             for (int i = 0; i < args.length; i++) {
 488                 if (args[i].startsWith("-ls")) {
 489                     logScale = true;
 490                 } else if (args[i].startsWith("-results") ||
 491                     args[i].startsWith("-r"))


< prev index next >