예제 #1
0
 /**
  * Returns the range of the values in this dataset's domain.
  *
  * @param includeInterval a flag that determines whether or not the x-interval is taken into
  *     account.
  * @return The range.
  */
 public Range getDomainBounds(boolean includeInterval) {
   if (includeInterval) {
     return this.intervalDelegate.getDomainBounds(includeInterval);
   } else {
     return DatasetUtilities.iterateDomainBounds(this, includeInterval);
   }
 }