sgala       01/09/10 15:20:16

  Modified:    src/java/org/apache/jetspeed/services/registry
                        NormalizedPortletEntry.java
               src/java/org/apache/jetspeed/om/profile/psml
                        PsmlConfigElement.java
               src/java/org/apache/jetspeed/om/registry/base
                        BaseRegistryEntry.java
  Log:
  Small javadoc errors...
  
  Revision  Changes    Path
  1.5       +11 -11    
jakarta-jetspeed/src/java/org/apache/jetspeed/services/registry/NormalizedPortletEntry.java
  
  Index: NormalizedPortletEntry.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/services/registry/NormalizedPortletEntry.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- NormalizedPortletEntry.java       2001/07/29 13:42:00     1.4
  +++ NormalizedPortletEntry.java       2001/09/10 22:20:15     1.5
  @@ -64,7 +64,7 @@
    * classname and URL of "ref" type entries by integrating its parents' parameters
    * 
    * @author <a href="mailto:[EMAIL PROTECTED]";>Rapha�l Luta</a>
  - * @version $Id: NormalizedPortletEntry.java,v 1.4 2001/07/29 13:42:00 raphael Exp $
  + * @version $Id: NormalizedPortletEntry.java,v 1.5 2001/09/10 22:20:15 sgala Exp $
    */
   public class NormalizedPortletEntry extends BasePortletEntry
   {
  @@ -85,19 +85,19 @@
           this.isRef = PortletEntry.TYPE_REF.equals(entry.getType());
       }
       
  -    /** @see RegistryEntry.getName */
  +    /** @see RegistryEntry#getName */
       public String getName()
       {
           return entry.getName();
       }
                                   
  -    /** @see RegistryEntry.setName */
  +    /** @see RegistryEntry#setName */
       public void setName( String name )
       {
           entry.setName(name);
       }
   
  -    /** @see RegistryEntry.getTitle */
  +    /** @see RegistryEntry#getTitle */
       public String getTitle()
       {
           if (isRef && (entry.getTitle() == null) )
  @@ -108,13 +108,13 @@
           return entry.getTitle();
       }
                                   
  -    /** @see RegistryEntry.setTitle */
  +    /** @see RegistryEntry#setTitle */
       public void setTitle(String title)
       {
           entry.setTitle(title);
       }
   
  -    /** @see RegistryEntry.getDescription */
  +    /** @see RegistryEntry#getDescription */
       public String getDescription()
       {
           if (isRef && (entry.getDescription() == null) )
  @@ -125,32 +125,32 @@
           return entry.getDescription();
       }
                                   
  -    /** @see RegistryEntry.setDescription */
  +    /** @see RegistryEntry#setDescription */
       public void setDescription(String description)
       {
           entry.setDescription(description);
       }
   
  -    /** @see RegistryEntry.getSecurity */
  +    /** @see RegistryEntry#getSecurity */
       public Security getSecurity()
       {
           return entry.getSecurity();
       }
                                   
  -    /** @see RegistryEntry.setSecurity */
  +    /** @see RegistryEntry#setSecurity */
       public void setSecurity( Security security )
       {
           entry.setSecurity(security);
       }
   
  -    /** @see RegistryEntry.isHidden */
  +    /** @see RegistryEntry#isHidden */
       public boolean isHidden()
       {
           // RL: should we normalize this ?
           return entry.isHidden();
       }                        
           
  -    /** @see RegistryEntry.setHidden */
  +    /** @see RegistryEntry#setHidden */
       public void setHidden( boolean hidden )
       {
           entry.setHidden( hidden );
  
  
  
  1.2       +8 -8      
jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/psml/PsmlConfigElement.java
  
  Index: PsmlConfigElement.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/psml/PsmlConfigElement.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PsmlConfigElement.java    2001/09/02 17:58:06     1.1
  +++ PsmlConfigElement.java    2001/09/10 22:20:16     1.2
  @@ -63,7 +63,7 @@
    * suitable for Castor XML serialization.
    * 
    * @author <a href="mailto:[EMAIL PROTECTED]";>Rapha�l Luta</a>
  - * @version $Id: PsmlConfigElement.java,v 1.1 2001/09/02 17:58:06 raphael Exp $
  + * @version $Id: PsmlConfigElement.java,v 1.2 2001/09/10 22:20:16 sgala Exp $
    */
   public abstract class PsmlConfigElement implements ConfigElement, 
java.io.Serializable
   {
  @@ -72,19 +72,19 @@
       
       private PsmlMetaInfo metaInfo;
            
  -    /** @see RegistryEntry.getName */
  +    /** @see RegistryEntry#getName */
       public String getName()
       {
           return this.name;
       }
                                   
  -    /** @see RegistryEntry.setName */
  +    /** @see RegistryEntry#setName */
       public void setName( String name )
       {
           this.name = name;
       }
   
  -    /** @see RegistryEntry.getTitle */
  +    /** @see RegistryEntry#getTitle */
       public String getTitle()
       {
           if (this.metaInfo != null)
  @@ -95,7 +95,7 @@
           return null;
       }
                                   
  -    /** @see RegistryEntry.setTitle */
  +    /** @see RegistryEntry#setTitle */
       public void setTitle(String title)
       {
           if (this.metaInfo == null)
  @@ -106,7 +106,7 @@
           this.metaInfo.setTitle(title);
       }
   
  -    /** @see RegistryEntry.getDescription */
  +    /** @see RegistryEntry#getDescription */
       public String getDescription()
       {
           if (this.metaInfo != null)
  @@ -117,7 +117,7 @@
           return null;
       }
                                   
  -    /** @see RegistryEntry.setDescription */
  +    /** @see RegistryEntry#setDescription */
       public void setDescription(String description)
       {
           if (this.metaInfo == null)
  @@ -145,4 +145,4 @@
           this.metaInfo = metaInfo;
       }
   
  -}
  \ No newline at end of file
  +}
  
  
  
  1.2       +12 -12    
jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base/BaseRegistryEntry.java
  
  Index: BaseRegistryEntry.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base/BaseRegistryEntry.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BaseRegistryEntry.java    2001/07/29 13:41:54     1.1
  +++ BaseRegistryEntry.java    2001/09/10 22:20:16     1.2
  @@ -63,7 +63,7 @@
    * suitable for Castor XML serialization.
    * 
    * @author <a href="mailto:[EMAIL PROTECTED]";>Rapha�l Luta</a>
  - * @version $Id: BaseRegistryEntry.java,v 1.1 2001/07/29 13:41:54 raphael Exp $
  + * @version $Id: BaseRegistryEntry.java,v 1.2 2001/09/10 22:20:16 sgala Exp $
    */
   public class BaseRegistryEntry implements RegistryEntry, java.io.Serializable
   {
  @@ -76,19 +76,19 @@
        
       private boolean hidden;    
       
  -    /** @see RegistryEntry.getName */
  +    /** @see RegistryEntry#getName */
       public String getName()
       {
           return this.name;
       }
                                   
  -    /** @see RegistryEntry.setName */
  +    /** @see RegistryEntry#setName */
       public void setName( String name )
       {
           this.name = name;
       }
   
  -    /** @see RegistryEntry.getTitle */
  +    /** @see RegistryEntry#getTitle */
       public String getTitle()
       {
           if (this.metaInfo != null)
  @@ -99,7 +99,7 @@
           return null;
       }
                                   
  -    /** @see RegistryEntry.setTitle */
  +    /** @see RegistryEntry#setTitle */
       public void setTitle(String title)
       {
           if (this.metaInfo == null)
  @@ -110,7 +110,7 @@
           this.metaInfo.setTitle(title);
       }
   
  -    /** @see RegistryEntry.getDescription */
  +    /** @see RegistryEntry#getDescription */
       public String getDescription()
       {
           if (this.metaInfo != null)
  @@ -121,7 +121,7 @@
           return null;
       }
                                   
  -    /** @see RegistryEntry.setDescription */
  +    /** @see RegistryEntry#setDescription */
       public void setDescription(String description)
       {
           if (this.metaInfo == null)
  @@ -132,25 +132,25 @@
           this.metaInfo.setDescription(description);
       }
   
  -    /** @see RegistryEntry.getSecurity */
  +    /** @see RegistryEntry#getSecurity */
       public Security getSecurity()
       {
           return this.security;
       }
                                   
  -    /** @see RegistryEntry.setSecurity */
  +    /** @see RegistryEntry#setSecurity */
       public void setSecurity( Security security )
       {
           this.security = security;
       }
   
  -    /** @see RegistryEntry.isHidden */
  +    /** @see RegistryEntry#isHidden */
       public boolean isHidden()
       {
           return this.hidden;
       }                        
           
  -    /** @see RegistryEntry.setHidden */
  +    /** @see RegistryEntry#setHidden */
       public void setHidden( boolean hidden )
       {
           this.hidden = hidden;
  @@ -197,4 +197,4 @@
           this.metaInfo = metaInfo;
       }
   
  -}
  \ No newline at end of file
  +}
  
  
  

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

Reply via email to