sgala       01/09/10 15:39:50

  Modified:    src/java/org/apache/jetspeed/services Registry.java
                        Profiler.java
               src/java/org/apache/jetspeed/portal/expire BaseExpire.java
                        FileWatchExpire.java package.html
  Log:
  Small javadoc errors...
  
  Revision  Changes    Path
  1.5       +2 -2      
jakarta-jetspeed/src/java/org/apache/jetspeed/services/Registry.java
  
  Index: Registry.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/services/Registry.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Registry.java     2001/07/29 13:41:59     1.4
  +++ Registry.java     2001/09/10 22:39:50     1.5
  @@ -63,9 +63,9 @@
    * <P>This is a commodity static accessor class around the 
    * <code>RegistryService</code></P>
    * 
  - * @see org.apache.jetspeed.services.registrymanager.RegistryService
  + * @see org.apache.jetspeed.services.registry.RegistryService
    * @author <a href="mailto:[EMAIL PROTECTED]";>Rapha�l Luta</a>
  - * @version $Id: Registry.java,v 1.4 2001/07/29 13:41:59 raphael Exp $
  + * @version $Id: Registry.java,v 1.5 2001/09/10 22:39:50 sgala Exp $
    */
   public class Registry {
    
  
  
  
  1.12      +2 -2      
jakarta-jetspeed/src/java/org/apache/jetspeed/services/Profiler.java
  
  Index: Profiler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/services/Profiler.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Profiler.java     2001/07/30 03:50:07     1.11
  +++ Profiler.java     2001/09/10 22:39:50     1.12
  @@ -72,10 +72,10 @@
    * <P>This is a commodity static accessor class around the 
    * <code>ProfilerService</code> interface</P>
    * 
  - * @see org.apache.jetspeed.services.profiler.Profiler
  + * @see org.apache.jetspeed.services.Profiler
    * @see org.apache.jetspeed.services.profiler.ProfilerService
    * @author <a href="mailto:[EMAIL PROTECTED]";>David Sean Taylor</a>
  - * @version $Id: Profiler.java,v 1.11 2001/07/30 03:50:07 taylor Exp $
  + * @version $Id: Profiler.java,v 1.12 2001/09/10 22:39:50 sgala Exp $
    */
   public class Profiler
   {
  
  
  
  1.4       +17 -17    
jakarta-jetspeed/src/java/org/apache/jetspeed/portal/expire/BaseExpire.java
  
  Index: BaseExpire.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/portal/expire/BaseExpire.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BaseExpire.java   2001/03/07 06:46:14     1.3
  +++ BaseExpire.java   2001/09/10 22:39:50     1.4
  @@ -65,7 +65,7 @@
   Handles content expiration
   
   @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -@version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +@version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
   */
   public abstract class BaseExpire implements Expire {
   
  @@ -75,45 +75,45 @@
       private Portlet portlet = null;
       
       /**
  -    @see Expire.init#
  +    @see Expire#init
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public void init() {
           this.setCreationTime( System.currentTimeMillis() );
       }
       
       /**
  -    @see Expire.isExpired#
  +    @see Expire#isExpired
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public boolean isExpired() {
           return this.expired;
       }
   
       /**
  -    @see Expire.setExpired#
  +    @see Expire#setExpired
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public void setExpired( boolean expired ) {
           this.expired = expired;
       }
   
       /**
  -    @see Expire.getCreationTime#
  +    @see Expire#getCreationTime
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public long getCreationTime() {
           return this.creationTime;
       }
     
       /**
  -    @see Expire.setCreationTime#
  +    @see Expire#setCreationTime
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public void setCreationTime( long creationTime ) {
           
  @@ -121,18 +121,18 @@
       }
       
       /**
  -    @see Expire.setProperty
  +    @see Expire#setProperty
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public void setProperty( String name, String value ) {
           this.properties.put( name, value );
       }
   
       /**
  -    @see Expire.getProperty
  +    @see Expire#getProperty
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public String getProperty( String name ) {
           return (String)this.properties.get( name );
  @@ -142,7 +142,7 @@
       Get the Portlet on which this is based.
       
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public Portlet getPortlet() {
           return this.portlet;
  @@ -152,7 +152,7 @@
       Set the Portlet on which this is based.
       
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: BaseExpire.java,v 1.3 2001/03/07 06:46:14 taylor Exp $
  +    @version $Id: BaseExpire.java,v 1.4 2001/09/10 22:39:50 sgala Exp $
       */
       public void setPortlet( Portlet portlet ) {
           this.portlet = portlet;
  
  
  
  1.6       +3 -3      
jakarta-jetspeed/src/java/org/apache/jetspeed/portal/expire/FileWatchExpire.java
  
  Index: FileWatchExpire.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/portal/expire/FileWatchExpire.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- FileWatchExpire.java      2001/03/07 06:46:18     1.5
  +++ FileWatchExpire.java      2001/09/10 22:39:50     1.6
  @@ -70,17 +70,17 @@
   Handles expiration mechanisms that expire when the file changes.
   
   @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -@version $Id: FileWatchExpire.java,v 1.5 2001/03/07 06:46:18 taylor Exp $
  +@version $Id: FileWatchExpire.java,v 1.6 2001/09/10 22:39:50 sgala Exp $
   */
   public class FileWatchExpire extends BaseExpire {
       
       FileWatcher fw = null;
       
       /**
  -    @see Expire.isExpired
  +    @see Expire#isExpired
       
       @author <a href="mailto:[EMAIL PROTECTED]";>Kevin A. Burton</a>
  -    @version $Id: FileWatchExpire.java,v 1.5 2001/03/07 06:46:18 taylor Exp $
  +    @version $Id: FileWatchExpire.java,v 1.6 2001/09/10 22:39:50 sgala Exp $
       */
       public boolean isExpired() {
           
  
  
  
  1.2       +2 -0      
jakarta-jetspeed/src/java/org/apache/jetspeed/portal/expire/package.html
  
  Index: package.html
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/portal/expire/package.html,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- package.html      2000/07/22 23:43:08     1.1
  +++ package.html      2001/09/10 22:39:50     1.2
  @@ -1,3 +1,5 @@
  +<body>
   <p>
   This is a package that handles content expiration
   </p>
  +</body>
  \ No newline at end of file
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to