Uses of Class
cdx.scorebot.util.TimestampRange

Packages that use TimestampRange
cdx.scorebot.app.tester Contains classeses related to the Tester. 
cdx.scorebot.net.tests Individual test implementations and the generic test framework; subpackages may have protected helper classes. 
cdx.scorebot.util Helper classes. 
 

Uses of TimestampRange in cdx.scorebot.app.tester
 

Methods in cdx.scorebot.app.tester that return TimestampRange
 TimestampRange AddDowntimeDialog.getDowntime()
          gets the downtime set by this dialog box
 TimestampRange ScheduledDowntimes.getScheduledDowntime(int index)
          Gets the downtime at the specified index from the scheduled downtimes list.
 

Methods in cdx.scorebot.app.tester that return types with arguments of type TimestampRange
 java.util.Vector<TimestampRange> ScheduledDowntimes.getScheduledDowntimes()
          Gets all scheduled downtimes in order from earliest starting time to latest.
 java.util.Vector<TimestampRange> ScheduledDowntimes.getScheduledDowntimesCopy()
          Gets a COPY of all scheduled downtimes in order from earliest starting time to latest.
 

Methods in cdx.scorebot.app.tester with parameters of type TimestampRange
 void ScheduledDowntimes.addScheduledDowntime(TimestampRange tr)
          Adds the range of time to stop conducting tests if it is in the future.
 void ScheduledDowntimes.removeScheduledDowntime(TimestampRange downtime)
          Removes the specified downtime from the scheduled downtimes list.
 

Constructors in cdx.scorebot.app.tester with parameters of type TimestampRange
AddDowntimeDialog(java.awt.Frame parent, boolean modal, TimestampRange defaultTR)
          Creates new dialog box to get a downtime from the user
 

Uses of TimestampRange in cdx.scorebot.net.tests
 

Methods in cdx.scorebot.net.tests that return TimestampRange
 TimestampRange TestSchedule.getTimeRangeToRun(int index)
          Gets the specified range of time to run
 

Methods in cdx.scorebot.net.tests that return types with arguments of type TimestampRange
 java.util.Vector<TimestampRange> TestSchedule.getTimeRangesToRun()
          gets when to run the test (time block(s))
 

Methods in cdx.scorebot.net.tests with parameters of type TimestampRange
 void TestSchedule.addTimeRangeToRun(TimestampRange tr)
          Adds a range of time during which tests will be run.
 

Uses of TimestampRange in cdx.scorebot.util
 

Methods in cdx.scorebot.util with parameters of type TimestampRange
 int TimestampRange.compareTo(TimestampRange tr)
          Compares this TimestampRange's start date with the specified TimestampRange: earliest start timestamp will come first.