[Ejtools-cvs] applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics
Brought to you by:
letiemble
Update of /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics In directory sc8-pr-cvs1:/tmp/cvs-serv18798/management.browser/src/main/org/ejtools/management/browser/ui/statistics Modified Files: BoundaryStatisticCustomizer.java BoundedRangeStatisticCustomizer.java CompositeStatisticCustomizer.java CountStatisticCustomizer.java RangeStatisticCustomizer.java StatisticCustomizer.java StatisticCustomizerFactory.java TimeStatisticCustomizer.java Log Message: Address Todo #800902 Address Todo #755528 Index: BoundaryStatisticCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics/BoundaryStatisticCustomizer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BoundaryStatisticCustomizer.java 24 Feb 2003 22:35:17 -0000 1.2 --- BoundaryStatisticCustomizer.java 27 Nov 2003 01:39:48 -0000 1.3 *************** *** 13,17 **** /** * @author letiemble - * @created 13 février 2003 * @version $Revision$ */ --- 13,16 ---- *************** *** 35,48 **** this.lblUpperBound = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.lower.bound"), ! resources.getString("customizer.tab.statistics.tooltip.lower.bound"), ! "UpperBound", ! this.lblUpperBound); this.lblLowerBound = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.upper.bound"), ! resources.getString("customizer.tab.statistics.tooltip.upper.bound"), ! "LowerBound", ! this.lblLowerBound); } --- 34,47 ---- this.lblUpperBound = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.lower.bound"), ! resources.getString("customizer.tab.statistics.tooltip.lower.bound"), ! "UpperBound", ! this.lblUpperBound); this.lblLowerBound = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.upper.bound"), ! resources.getString("customizer.tab.statistics.tooltip.upper.bound"), ! "LowerBound", ! this.lblLowerBound); } Index: BoundedRangeStatisticCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics/BoundedRangeStatisticCustomizer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BoundedRangeStatisticCustomizer.java 24 Feb 2003 22:35:17 -0000 1.2 --- BoundedRangeStatisticCustomizer.java 27 Nov 2003 01:39:48 -0000 1.3 *************** *** 13,17 **** /** * @author letiemble - * @created 13 février 2003 * @version $Revision$ */ --- 13,16 ---- *************** *** 41,72 **** this.lblUpperBound = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.upper.bound"), ! resources.getString("customizer.tab.statistics.tooltip.upper.bound"), ! "UpperBound", ! this.lblUpperBound); this.lblHighWM = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.highwater.mark"), ! resources.getString("customizer.tab.statistics.tooltip.highwater.mark"), ! "HighWaterMark", ! this.lblHighWM); this.lblCurrent = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.current"), ! resources.getString("customizer.tab.statistics.tooltip.current"), ! "Current", ! this.lblCurrent); this.lblLowWM = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.lowwater.mark"), ! resources.getString("customizer.tab.statistics.tooltip.lowwater.mark"), ! "LowWaterMark", ! this.lblLowWM); this.lblLowerBound = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.lower.bound"), ! resources.getString("customizer.tab.statistics.tooltip.lower.bound"), ! "LowerBound", ! this.lblLowerBound); } --- 40,71 ---- this.lblUpperBound = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.upper.bound"), ! resources.getString("customizer.tab.statistics.tooltip.upper.bound"), ! "UpperBound", ! this.lblUpperBound); this.lblHighWM = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.highwater.mark"), ! resources.getString("customizer.tab.statistics.tooltip.highwater.mark"), ! "HighWaterMark", ! this.lblHighWM); this.lblCurrent = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.current"), ! resources.getString("customizer.tab.statistics.tooltip.current"), ! "Current", ! this.lblCurrent); this.lblLowWM = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.lowwater.mark"), ! resources.getString("customizer.tab.statistics.tooltip.lowwater.mark"), ! "LowWaterMark", ! this.lblLowWM); this.lblLowerBound = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.lower.bound"), ! resources.getString("customizer.tab.statistics.tooltip.lower.bound"), ! "LowerBound", ! this.lblLowerBound); } Index: CompositeStatisticCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics/CompositeStatisticCustomizer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CompositeStatisticCustomizer.java 17 Feb 2003 21:25:48 -0000 1.1 --- CompositeStatisticCustomizer.java 27 Nov 2003 01:39:48 -0000 1.2 *************** *** 13,17 **** /** * @author letiemble - * @created 13 février 2003 * @version $Revision$ */ --- 13,16 ---- Index: CountStatisticCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics/CountStatisticCustomizer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CountStatisticCustomizer.java 24 Feb 2003 22:35:17 -0000 1.2 --- CountStatisticCustomizer.java 27 Nov 2003 01:39:48 -0000 1.3 *************** *** 13,17 **** /** * @author letiemble - * @created 13 février 2003 * @version $Revision$ */ --- 13,16 ---- *************** *** 33,40 **** this.lblCount = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.count"), ! resources.getString("customizer.tab.statistics.tooltip.count"), ! "Count", ! this.lblCount); } --- 32,39 ---- this.lblCount = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.count"), ! resources.getString("customizer.tab.statistics.tooltip.count"), ! "Count", ! this.lblCount); } Index: RangeStatisticCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics/RangeStatisticCustomizer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RangeStatisticCustomizer.java 24 Feb 2003 22:35:19 -0000 1.2 --- RangeStatisticCustomizer.java 27 Nov 2003 01:39:48 -0000 1.3 *************** *** 13,17 **** /** * @author letiemble - * @created 13 février 2003 * @version $Revision$ */ --- 13,16 ---- *************** *** 37,56 **** this.lblHighWM = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.highwater.mark"), ! resources.getString("customizer.tab.statistics.tooltip.highwater.mark"), ! "HighWaterMark", ! this.lblHighWM); this.lblCurrent = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.current"), ! resources.getString("customizer.tab.statistics.tooltip.current"), ! "Current", ! this.lblCurrent); this.lblLowWM = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.lowwater.mark"), ! resources.getString("customizer.tab.statistics.tooltip.lowwater.mark"), ! "LowWaterMark", ! this.lblLowWM); } --- 36,55 ---- this.lblHighWM = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.highwater.mark"), ! resources.getString("customizer.tab.statistics.tooltip.highwater.mark"), ! "HighWaterMark", ! this.lblHighWM); this.lblCurrent = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.current"), ! resources.getString("customizer.tab.statistics.tooltip.current"), ! "Current", ! this.lblCurrent); this.lblLowWM = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.lowwater.mark"), ! resources.getString("customizer.tab.statistics.tooltip.lowwater.mark"), ! "LowWaterMark", ! this.lblLowWM); } Index: StatisticCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics/StatisticCustomizer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** StatisticCustomizer.java 24 Feb 2003 22:35:20 -0000 1.2 --- StatisticCustomizer.java 27 Nov 2003 01:39:48 -0000 1.3 *************** *** 19,22 **** --- 19,23 ---- import javax.swing.JLabel; import javax.swing.JPanel; + import javax.swing.SwingConstants; import javax.swing.border.TitledBorder; *************** *** 25,29 **** /** * @author letiemble - * @created 13 février 2003 * @version $Revision$ */ --- 26,29 ---- *************** *** 72,88 **** this.lblDescription = new JLabel(this.statistic.getDescription()); this.addItem( ! resources.getString("customizer.tab.statistics.text.description"), ! resources.getString("customizer.tab.statistics.tooltip.description"), ! this.lblDescription); this.lblStartTime = new JLabel(""); this.addItem( ! resources.getString("customizer.tab.statistics.text.start.time"), ! resources.getString("customizer.tab.statistics.tooltip.start.time"), ! this.lblStartTime); this.lblLastSampleTime = new JLabel(""); this.addItem( ! resources.getString("customizer.tab.statistics.text.last.sample.time"), ! resources.getString("customizer.tab.statistics.tooltip.last.sample.time"), ! this.lblLastSampleTime); } --- 72,88 ---- this.lblDescription = new JLabel(this.statistic.getDescription()); this.addItem( ! resources.getString("customizer.tab.statistics.text.description"), ! resources.getString("customizer.tab.statistics.tooltip.description"), ! this.lblDescription); this.lblStartTime = new JLabel(""); this.addItem( ! resources.getString("customizer.tab.statistics.text.start.time"), ! resources.getString("customizer.tab.statistics.tooltip.start.time"), ! this.lblStartTime); this.lblLastSampleTime = new JLabel(""); this.addItem( ! resources.getString("customizer.tab.statistics.text.last.sample.time"), ! resources.getString("customizer.tab.statistics.tooltip.last.sample.time"), ! this.lblLastSampleTime); } *************** *** 134,138 **** protected void addGraphItem(String label, String tooltip, String propertyName, JLabel value) { ! JLabel lbl = new JLabel(label + " : ", JLabel.RIGHT); lbl.setToolTipText(tooltip); this.gridbagconstraints.weightx = 0.0d; --- 134,138 ---- protected void addGraphItem(String label, String tooltip, String propertyName, JLabel value) { ! JLabel lbl = new JLabel(label + " : ", SwingConstants.RIGHT); lbl.setToolTipText(tooltip); this.gridbagconstraints.weightx = 0.0d; *************** *** 160,164 **** protected void addItem(String label, String tooltip, JLabel value) { ! JLabel lbl = new JLabel(label + " : ", JLabel.RIGHT); lbl.setToolTipText(tooltip); this.gridbagconstraints.weightx = 0.0d; --- 160,164 ---- protected void addItem(String label, String tooltip, JLabel value) { ! JLabel lbl = new JLabel(label + " : ", SwingConstants.RIGHT); lbl.setToolTipText(tooltip); this.gridbagconstraints.weightx = 0.0d; Index: StatisticCustomizerFactory.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics/StatisticCustomizerFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** StatisticCustomizerFactory.java 17 Feb 2003 21:25:48 -0000 1.1 --- StatisticCustomizerFactory.java 27 Nov 2003 01:39:48 -0000 1.2 *************** *** 16,20 **** /** * @author letiemble - * @created 13 février 2003 * @version $Revision$ */ --- 16,19 ---- Index: TimeStatisticCustomizer.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/ui/statistics/TimeStatisticCustomizer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TimeStatisticCustomizer.java 24 Feb 2003 22:35:16 -0000 1.2 --- TimeStatisticCustomizer.java 27 Nov 2003 01:39:48 -0000 1.3 *************** *** 13,17 **** /** * @author letiemble - * @created 13 février 2003 * @version $Revision$ */ --- 13,16 ---- *************** *** 39,64 **** this.lblCount = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.count"), ! resources.getString("customizer.tab.statistics.tooltip.count"), ! "Count", ! this.lblCount); this.lblMinTime = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.min.time"), ! resources.getString("customizer.tab.statistics.tooltip.min.time"), ! "MinTime", ! this.lblMinTime); this.lblMaxTime = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.max.time"), ! resources.getString("customizer.tab.statistics.tooltip.max.time"), ! "MaxTime", ! this.lblMaxTime); this.lblTotalTime = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.total.time"), ! resources.getString("customizer.tab.statistics.tooltip.total.time"), ! "TotalTime", ! this.lblTotalTime); } --- 38,63 ---- this.lblCount = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.count"), ! resources.getString("customizer.tab.statistics.tooltip.count"), ! "Count", ! this.lblCount); this.lblMinTime = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.min.time"), ! resources.getString("customizer.tab.statistics.tooltip.min.time"), ! "MinTime", ! this.lblMinTime); this.lblMaxTime = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.max.time"), ! resources.getString("customizer.tab.statistics.tooltip.max.time"), ! "MaxTime", ! this.lblMaxTime); this.lblTotalTime = new JLabel(""); this.addGraphItem( ! resources.getString("customizer.tab.statistics.text.total.time"), ! resources.getString("customizer.tab.statistics.tooltip.total.time"), ! "TotalTime", ! this.lblTotalTime); } |