示例#1
0
  /**
   * Make the list of times associated with this DataSource for DataSelection.
   *
   * @return DateTimes as a list.
   */
  protected List doMakeDateTimes() {
    List timesList = new ArrayList();

    if (getProperty(AddeUtil.ABSOLUTE_TIMES, (Object) null) != null) {
      timesList.addAll((List) getProperty(AddeUtil.ABSOLUTE_TIMES));
    }
    return timesList; // Arrays.asList (
    //  new DateTime[] { traceAdapter.getBaseTime() });
  }