Uses of Class
wicket.util.time.Time

Packages that use Time
wicket The core Wicket package. 
wicket.markup Base package for markup. 
wicket.markup.html Base package of HTML markup. 
wicket.markup.html.image.resource Resource support for image components. 
wicket.protocol.http HTTP implementation. 
wicket.resource Locale aware resouce loaders. 
wicket.util.file File utilities. 
wicket.util.resource Base support for resources. 
wicket.util.string String utilities. 
wicket.util.thread Threading utilities. 
wicket.util.time Utilities for working with time(s). 
wicket.util.value Casting utilities. 
wicket.util.watch Modification observers. 
 

Uses of Time in wicket
 

Methods in wicket with parameters of type Time
 void Response.setLastModifiedTime(Time time)
          Set the contents last modified time, if appropriate in the subclass.
 

Uses of Time in wicket.markup
 

Methods in wicket.markup that return Time
 Time MarkupResourceStream.lastModifiedTime()
           
 

Uses of Time in wicket.markup.html
 

Fields in wicket.markup.html declared as Time
protected  Time DynamicWebResource.ResourceState.lastModifiedTime
           
 

Methods in wicket.markup.html that return Time
 Time DynamicWebResource.ResourceState.lastModifiedTime()
           
 

Uses of Time in wicket.markup.html.image.resource
 

Methods in wicket.markup.html.image.resource with parameters of type Time
protected  void DynamicImageResource.setLastModifiedTime(Time time)
          set the last modified time for this resource.
 

Uses of Time in wicket.protocol.http
 

Methods in wicket.protocol.http with parameters of type Time
 void WebResponse.setLastModifiedTime(Time time)
           
 

Uses of Time in wicket.resource
 

Methods in wicket.resource that return Time
 Time DynamicByteArrayResource.ResourceState.lastModifiedTime()
           
 

Uses of Time in wicket.util.file
 

Methods in wicket.util.file that return Time
 Time File.lastModifiedTime()
          Returns a Time object representing the most recent time this file was modified.
 

Uses of Time in wicket.util.resource
 

Methods in wicket.util.resource that return Time
 Time UrlResourceStream.lastModifiedTime()
           
 Time FileResourceStream.lastModifiedTime()
           
 Time AbstractStringResourceStream.lastModifiedTime()
           
 

Methods in wicket.util.resource with parameters of type Time
 void AbstractStringResourceStream.setLastModified(Time lastModified)
           
 

Uses of Time in wicket.util.string
 

Methods in wicket.util.string that return Time
 Time StringValue.toOptionalTime()
          Convert to object types, returning null if text is null.
 Time StringValue.toTime()
          Convert this text to a time instance and convert unchecked NumberFormatExceptions to checked.
 Time StringValue.toTime(Time defaultValue)
          Convert to primitive types, returning default value if text is null.
 

Methods in wicket.util.string with parameters of type Time
 Time StringValue.toTime(Time defaultValue)
          Convert to primitive types, returning default value if text is null.
 

Uses of Time in wicket.util.thread
 

Methods in wicket.util.thread with parameters of type Time
 void Task.setStartTime(Time startTime)
          Sets start time for this task.
 

Uses of Time in wicket.util.time
 

Fields in wicket.util.time declared as Time
static Time Time.START_OF_UNIX_TIME
          The beginning of UNIX time: January 1, 1970, 0:00 GMT.
 

Methods in wicket.util.time that return Time
 Time Time.add(Duration duration)
          Adds the given duration to this time object, moving the time into the future.
 Time TimeFrame.getEnd()
           
 Time TimeFrame.getStart()
           
static Time Time.milliseconds(long time)
          Gets a Time instance based on the given miliseconds.
 Time TimeOfDay.next()
          Gets the next occurrence of this time of day in localtime.
 Time TimeOfDay.next(java.util.Calendar calendar)
          Gets the next occurence of this time of day on the given calendar.
static Time Time.now()
          Gets a Time instance based on the current time.
static Time Time.parseDate(java.util.Calendar calendar, java.lang.String string)
          Gets time by parsing 'yyyy.MM.dd' format.
static Time Time.parseDate(java.lang.String string)
          Gets time by parsing 'yyyy.MM.dd' format using a localtime calendar.
 Time Time.subtract(Duration duration)
          Adds the given duration to this time object, moving the time into the future.
static Time Time.valueOf(java.util.Calendar calendar, java.lang.String string)
          Gets time by parsing yyyy.MM.dd-h.mma format.
static Time Time.valueOf(java.util.Calendar calendar, TimeOfDay timeOfDay)
          Gets a Time instance based on the given calendar and TimeOfDay objects.
static Time Time.valueOf(java.util.Date date)
          Gets a Time instance based on the given date object.
static Time Time.valueOf(long time)
          Gets a Time instance based on the given miliseconds.
static Time Time.valueOf(java.lang.String string)
          Gets time by parsing yyyy.MM.dd-h.mma format.
static Time Time.valueOf(java.lang.String string, java.lang.String pattern)
          Gets time by parsing 'pattern' format.
static Time Time.valueOf(TimeOfDay timeOfDay)
          Gets a Time instance based on the given TimeOfDayobject.
 

Methods in wicket.util.time with parameters of type Time
 boolean TimeFrame.contains(Time time)
           
static Duration Duration.elapsed(Time start)
          The amount of time elapsed since start time
 java.lang.Object TimeMap.get(Time time)
           
 Duration Time.subtract(Time that)
          Subtract time from this and returns the difference as a duration object.
static TimeOfDay TimeOfDay.valueOf(java.util.Calendar calendar, Time time)
          Converts to TimeOfDay instance.
static TimeOfDay TimeOfDay.valueOf(Time time)
          Converts to TimeOfDay instance.
static TimeFrame TimeFrame.valueOf(Time start, Duration duration)
          Creates a time frame for a start and duration
static TimeFrame TimeFrame.valueOf(Time start, Time end)
          Creates a time frame for a start and end time
 

Uses of Time in wicket.util.value
 

Methods in wicket.util.value that return Time
 Time ValueMap.getTime(java.lang.String key)
          Gets a time.
 

Uses of Time in wicket.util.watch
 

Methods in wicket.util.watch that return Time
 Time IModifiable.lastModifiedTime()
          Gets the last time this modifiable thing changed.
 



Copyright © 2004-2007 Wicket developers. All Rights Reserved.