1 4 package com.tc.admin.common; 5 6 import javax.management.ObjectName ; 7 import com.tc.admin.ConnectionContext; 8 9 public class RatePanel extends CountStatisticPanel { 10 public RatePanel( 11 ConnectionContext cc, 12 ObjectName bean, 13 String statName, 14 String header, 15 String xLabel, 16 String yLabel) 17 { 18 super(cc); 19 20 setBean(bean); 21 setStatisticName(statName); 22 setSeriesName(header); 23 setTimeAxisLabel(xLabel); 24 setValueAxisLabel(yLabel); 25 } 26 } 27 | Popular Tags |