Uses of Class
net.sourceforge.java.util.jobs.scheduling.JobExecutionInterval

Packages that use JobExecutionInterval
net.sourceforge.java.feednread.backend.model.favoritestree Provides the data model classes for the NewsFeedFavoritesTree ui component. 
net.sourceforge.java.feednread.frontend.dialog Provides a collection of dialogs used in the application context. 
net.sourceforge.java.feednread.frontend.event.action Provides a collection of Actions handling events based on user actions.  
net.sourceforge.java.util.jobs.scheduling Provides core support for scheduling background activity. 
 

Uses of JobExecutionInterval in net.sourceforge.java.feednread.backend.model.favoritestree
 

Fields in net.sourceforge.java.feednread.backend.model.favoritestree declared as JobExecutionInterval
private  JobExecutionInterval Category.updateInterval
           The update interval of a Category.
 

Methods in net.sourceforge.java.feednread.backend.model.favoritestree that return JobExecutionInterval
 JobExecutionInterval Category.getUpdateInterval()
           Gets the update interval of this Category.
 

Methods in net.sourceforge.java.feednread.backend.model.favoritestree with parameters of type JobExecutionInterval
 void Category.setUpdateInterval(JobExecutionInterval interval)
           Sets the update interval for this Category to the specified JobExceutionInterval object.
 

Uses of JobExecutionInterval in net.sourceforge.java.feednread.frontend.dialog
 

Fields in net.sourceforge.java.feednread.frontend.dialog declared as JobExecutionInterval
private  JobExecutionInterval FavoriteInputDialog.refreshInterval
           The refresh interval of the Favorite
private  JobExecutionInterval CategoryInputDialog.refreshInterval
           The refresh interval of the Category
 

Methods in net.sourceforge.java.feednread.frontend.dialog that return JobExecutionInterval
 JobExecutionInterval FavoriteInputDialog.getRefreshInterval()
           Gets the Favorite's refresh interval as selected by the user.
 JobExecutionInterval CategoryInputDialog.getRefreshInterval()
           Gets the Category's refresh interval as selected by the end user.
 

Uses of JobExecutionInterval in net.sourceforge.java.feednread.frontend.event.action
 

Methods in net.sourceforge.java.feednread.frontend.event.action with parameters of type JobExecutionInterval
private  void TreeElementPropertiesAction.updateRefreshInterval(Category category, JobExecutionInterval interval, boolean recursive)
           Updates the refresh interval of all ITreeElements, i.e.
 

Uses of JobExecutionInterval in net.sourceforge.java.util.jobs.scheduling
 

Fields in net.sourceforge.java.util.jobs.scheduling declared as JobExecutionInterval
private  JobExecutionInterval JobExecutionStatus.interval
           The execution interval of an IJob
static JobExecutionInterval JobExecutionInterval.NO_EXECUTION
           Default interval of zero (no execution)
static JobExecutionInterval JobExecutionInterval.APPLICATION_STARTUP
           Default interval of 1 (execution at application startup)
static JobExecutionInterval JobExecutionInterval.ONE_MINUTE
           Default interval of 1 minute
static JobExecutionInterval JobExecutionInterval.TWO_MINUTES
           Default interval of 2 minutes
static JobExecutionInterval JobExecutionInterval.THREE_MINUTES
           Default interval of 3 minutes
static JobExecutionInterval JobExecutionInterval.FOUR_MINUTES
           Default interval of 4 minutes
static JobExecutionInterval JobExecutionInterval.FIVE_MINUTES
           Default interval of 5 minutes
static JobExecutionInterval JobExecutionInterval.TEN_MINUTES
           Default interval of 10 minutes
static JobExecutionInterval JobExecutionInterval.FIFTEEN_MINUTES
           Default interval of 15 minutes
static JobExecutionInterval JobExecutionInterval.THIRTY_MINUTES
           Default interval of 30 minutes
static JobExecutionInterval JobExecutionInterval.ONE_HOUR
           Default interval of 1 hour
static JobExecutionInterval JobExecutionInterval.TWO_HOURS
           Default interval of 2 hours
static JobExecutionInterval JobExecutionInterval.FOUR_HOURS
           Default interval of 4 hours
static JobExecutionInterval JobExecutionInterval.EIGHT_HOURS
           Default interval of 8 hours
static JobExecutionInterval JobExecutionInterval.TWELVE_HOURS
           Default interval of 12 hours
static JobExecutionInterval JobExecutionInterval.ONE_DAY
           Default interval of 1 day
static JobExecutionInterval JobExecutionInterval.ONE_WEEK
           Default interval of 1 week
static JobExecutionInterval[] JobExecutionInterval.DEFAULT_INTERVALS
           The predefined intervals
 

Methods in net.sourceforge.java.util.jobs.scheduling that return JobExecutionInterval
 JobExecutionInterval JobExecutionStatus.getExecutionInterval()
           Gets the JobExecutionInterval of this JobExceutionStatus which hold the period which separates subsequent executions of an IJob.
static JobExecutionInterval JobExecutionInterval.getInterval(long period)
           Gets the JobExecutionInterval that matches the specified period.
 

Methods in net.sourceforge.java.util.jobs.scheduling with parameters of type JobExecutionInterval
 void JobExecutionStatus.setExecutionInterval(JobExecutionInterval interval)
           Sets the JobExecutionInterval of this JobExceutionStatus which hold the period which separates subsequent executions of an IJob.
 

Constructors in net.sourceforge.java.util.jobs.scheduling with parameters of type JobExecutionInterval
JobExecutionStatus(JobExecutionInterval interval)
           Creates a new JobExceutionInterval.