[jboss-cvs] jboss-seam/src/main/org/jboss/seam/annotations/timer ...

Gavin King gavin.king at jboss.com
Mon Oct 9 14:44:05 EDT 2006


  User: gavin   
  Date: 06/10/09 14:44:05

  Modified:    src/main/org/jboss/seam/annotations/timer    Duration.java
                        Expiration.java IntervalDuration.java
  Log:
  javadoc
  
  Revision  Changes    Path
  1.2       +11 -0     jboss-seam/src/main/org/jboss/seam/annotations/timer/Duration.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Duration.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/timer/Duration.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- Duration.java	9 Oct 2006 08:30:28 -0000	1.1
  +++ Duration.java	9 Oct 2006 18:44:05 -0000	1.2
  @@ -7,6 +7,17 @@
   import java.lang.annotation.Retention;
   import java.lang.annotation.Target;
   
  +/**
  + * The duration of the wait before an asynchronous 
  + * call is processed (or before the first occurrence
  + * of a repeating asynchronous call).
  + * 
  + * This annotation occurs on a parameter of type long
  + * or Long of a method marked @Asynchronous.
  + * 
  + * @author Gavin King
  + *
  + */
   @Target(PARAMETER)
   @Retention(RUNTIME)
   @Documented
  
  
  
  1.2       +11 -0     jboss-seam/src/main/org/jboss/seam/annotations/timer/Expiration.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Expiration.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/timer/Expiration.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- Expiration.java	9 Oct 2006 08:30:28 -0000	1.1
  +++ Expiration.java	9 Oct 2006 18:44:05 -0000	1.2
  @@ -7,6 +7,17 @@
   import java.lang.annotation.Retention;
   import java.lang.annotation.Target;
   
  +/**
  + * The expiration time at which an asynchronous call may
  + * first be processed (or the first occurrence of a repeating 
  + * asynchronous call).
  + * 
  + * This annotation occurs on a parameter of type Date
  + * of a method marked @Asynchronous.
  + * 
  + * @author Gavin King
  + *
  + */
   @Target(PARAMETER)
   @Retention(RUNTIME)
   @Documented
  
  
  
  1.2       +10 -0     jboss-seam/src/main/org/jboss/seam/annotations/timer/IntervalDuration.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: IntervalDuration.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/annotations/timer/IntervalDuration.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- IntervalDuration.java	9 Oct 2006 08:30:28 -0000	1.1
  +++ IntervalDuration.java	9 Oct 2006 18:44:05 -0000	1.2
  @@ -7,6 +7,16 @@
   import java.lang.annotation.Retention;
   import java.lang.annotation.Target;
   
  +/**
  + * The interval between occurrences of a repeating
  + * asynchronous call.
  + * 
  + * This annotation occurs on a parameter of type Date
  + * of a method marked @Asynchronous.
  + * 
  + * @author Gavin King
  + *
  + */
   @Target(PARAMETER)
   @Retention(RUNTIME)
   @Documented
  
  
  



More information about the jboss-cvs-commits mailing list