コード例 #1
0
 /**
  * This method looks for all known GraphingStatisticsAppenders and returns their names.
  *
  * @return The list of known GraphingStatisticsAppender names.
  */
 protected List<String> getAllKnownGraphNames() {
   List<String> retVal = new ArrayList<String>();
   for (GraphingStatisticsAppender appender :
       GraphingStatisticsAppender.getAllGraphingStatisticsAppenders()) {
     retVal.add(appender.getName());
   }
   return retVal;
 }
コード例 #2
0
 /**
  * Finds the specified graph by using the {@link
  * GraphingStatisticsAppender#getAppenderByName(String)} method to find the appender with the
  * specified name.
  *
  * @param name the name of the GraphingStatisticsAppender whose chart generator should be
  *     returned.
  * @return The specified chart generator, or null if no appender with the specified name was
  *     found.
  */
 protected StatisticsChartGenerator getGraphByName(String name) {
   GraphingStatisticsAppender appender = GraphingStatisticsAppender.getAppenderByName(name);
   return (appender == null) ? null : appender.getChartGenerator();
 }