/ATF2/control-software/epics-3.14.8/extensions/src/ChannelArchiver/archive_viewer/src/org/jfree/chart/labels/IntervalCategoryLabelGenerator.java

http://atf2flightsim.googlecode.com/ · Java · 127 lines · 49 code · 11 blank · 67 comment · 11 complexity · bb30cc2a8cd82f93a4f961b98c766832 MD5 · raw file

  1. /* ===========================================================
  2. * JFreeChart : a free chart library for the Java(tm) platform
  3. * ===========================================================
  4. *
  5. * (C) Copyright 2000-2004, by Object Refinery Limited and Contributors.
  6. *
  7. * Project Info: http://www.jfree.org/jfreechart/index.html
  8. *
  9. * This library is free software; you can redistribute it and/or modify it under the terms
  10. * of the GNU Lesser General Public License as published by the Free Software Foundation;
  11. * either version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
  14. * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. * See the GNU Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public License along with this
  18. * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  19. * Boston, MA 02111-1307, USA.
  20. *
  21. * [Java is a trademark or registered trademark of Sun Microsystems, Inc.
  22. * in the United States and other countries.]
  23. *
  24. * -----------------------------------
  25. * IntervalCategoryLabelGenerator.java
  26. * -----------------------------------
  27. * (C) Copyright 2004, by Object Refinery Limited.
  28. *
  29. * Original Author: David Gilbert (for Object Refinery Limited);
  30. * Contributor(s): -;
  31. *
  32. * $Id: IntervalCategoryLabelGenerator.java,v 1.1.1.1 2009/03/17 15:30:58 whitegr Exp $
  33. *
  34. * Changes
  35. * -------
  36. * 11-May-2004 : Version 1, split from IntervalCategoryItemLabelGenerator (DG);
  37. *
  38. */
  39. package org.jfree.chart.labels;
  40. import java.io.Serializable;
  41. import java.text.DateFormat;
  42. import java.text.NumberFormat;
  43. import org.jfree.data.category.CategoryDataset;
  44. import org.jfree.data.category.IntervalCategoryDataset;
  45. import org.jfree.util.PublicCloneable;
  46. /**
  47. * A label generator for plots that use data from an {@link IntervalCategoryDataset}.
  48. */
  49. public class IntervalCategoryLabelGenerator extends StandardCategoryLabelGenerator
  50. implements CategoryLabelGenerator,
  51. PublicCloneable,
  52. Cloneable,
  53. Serializable {
  54. /** The default format string. */
  55. public static final String DEFAULT_LABEL_FORMAT_STRING = "({0}, {1}) = {3} - {4}";
  56. /**
  57. * Creates a new generator with a default number formatter.
  58. */
  59. public IntervalCategoryLabelGenerator() {
  60. super(DEFAULT_LABEL_FORMAT_STRING, NumberFormat.getInstance());
  61. }
  62. /**
  63. * Creates a new generator with the specified number formatter.
  64. *
  65. * @param labelFormat the label format string (<code>null</code> not permitted).
  66. * @param formatter the number formatter (<code>null</code> not permitted).
  67. */
  68. public IntervalCategoryLabelGenerator(String labelFormat, NumberFormat formatter) {
  69. super(labelFormat, formatter);
  70. }
  71. /**
  72. * Creates a new generator with the specified date formatter.
  73. *
  74. * @param labelFormat the label format string (<code>null</code> not permitted).
  75. * @param formatter the date formatter (<code>null</code> not permitted).
  76. */
  77. public IntervalCategoryLabelGenerator(String labelFormat, DateFormat formatter) {
  78. super(labelFormat, formatter);
  79. }
  80. /**
  81. * Creates the array of items that can be passed to the <code>MessageFormat</code> class
  82. * for creating labels.
  83. *
  84. * @param dataset the dataset (<code>null</code> not permitted).
  85. * @param row the row index (zero-based).
  86. * @param column the column index (zero-based).
  87. *
  88. * @return The items (never <code>null</code>).
  89. */
  90. protected Object[] createItemArray(CategoryDataset dataset, int row, int column) {
  91. Object[] result = new Object[5];
  92. result[0] = dataset.getRowKey(row).toString();
  93. result[1] = dataset.getColumnKey(column).toString();
  94. Number value = dataset.getValue(row, column);
  95. if (getNumberFormat() != null) {
  96. result[2] = getNumberFormat().format(value);
  97. }
  98. else if (getDateFormat() != null) {
  99. result[2] = getDateFormat().format(value);
  100. }
  101. if (dataset instanceof IntervalCategoryDataset) {
  102. IntervalCategoryDataset icd = (IntervalCategoryDataset) dataset;
  103. Number start = icd.getStartValue(row, column);
  104. Number end = icd.getEndValue(row, column);
  105. if (getNumberFormat() != null) {
  106. result[3] = getNumberFormat().format(start);
  107. result[4] = getNumberFormat().format(end);
  108. }
  109. else if (getDateFormat() != null) {
  110. result[3] = getDateFormat().format(start);
  111. result[4] = getDateFormat().format(end);
  112. }
  113. }
  114. return result;
  115. }
  116. }