public TimePeriodValuesCollection(TimePeriodValues series)
 {
   TimePeriodValuesCollection valuesCollection = this;
   this.data = (List) new ArrayList();
   this.xPosition = TimePeriodAnchor.__\u003C\u003EMIDDLE;
   this.domainIsPointsInTime = false;
   if (series == null)
     return;
   this.data.add((object) series);
   series.addChangeListener((SeriesChangeListener) this);
 }
 public TimeSeriesCollection(TimeSeries series, TimeZone zone)
 {
   TimeSeriesCollection seriesCollection = this;
   if (zone == null)
     zone = TimeZone.getDefault();
   this.workingCalendar = Calendar.getInstance(zone);
   this.data = (List) new ArrayList();
   if (series != null)
   {
     this.data.add((object) series);
     series.addChangeListener((SeriesChangeListener) this);
   }
   this.xPosition = TimePeriodAnchor.__\u003C\u003ESTART;
   this.domainIsPointsInTime = true;
 }
 public TimeTableXYDataset(TimeZone zone, Locale locale)
 {
   TimeTableXYDataset timeTableXyDataset = this;
   if (zone == null)
   {
     string str = "Null 'zone' argument.";
     Throwable.__\u003CsuppressFillInStackTrace\u003E();
     throw new IllegalArgumentException(str);
   }
   else if (locale == null)
   {
     string str = "Null 'locale' argument.";
     Throwable.__\u003CsuppressFillInStackTrace\u003E();
     throw new IllegalArgumentException(str);
   }
   else
   {
     this.values = new DefaultKeyedValues2D(true);
     this.workingCalendar = Calendar.getInstance(zone, locale);
     this.xPosition = TimePeriodAnchor.__\u003C\u003ESTART;
   }
 }
 public OHLCSeriesCollection()
 {
   OHLCSeriesCollection seriesCollection = this;
   this.xPosition = TimePeriodAnchor.__\u003C\u003EMIDDLE;
   this.data = (List) new ArrayList();
 }