You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by sg...@apache.org on 2001/12/04 19:15:54 UTC

cvs commit: jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base BasePortletRegistry.java BaseRegistry.java

sgala       01/12/04 10:15:54

  Modified:    src/java/org/apache/jetspeed/om/profile/psml
                        PsmlConfigElement.java PsmlControl.java
                        PsmlController.java PsmlSkin.java
               src/java/org/apache/jetspeed/om/registry/base
                        BasePortletRegistry.java BaseRegistry.java
  Log:
  Javadoc warnings
  
  Revision  Changes    Path
  1.3       +7 -7      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.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- PsmlConfigElement.java	2001/09/10 22:20:16	1.2
  +++ PsmlConfigElement.java	2001/12/04 18:15:54	1.3
  @@ -63,7 +63,7 @@
    * suitable for Castor XML serialization.
    * 
    * @author <a href="mailto:raphael@apache.org">Rapha�l Luta</a>
  - * @version $Id: PsmlConfigElement.java,v 1.2 2001/09/10 22:20:16 sgala Exp $
  + * @version $Id: PsmlConfigElement.java,v 1.3 2001/12/04 18:15:54 sgala Exp $
    */
   public abstract class PsmlConfigElement implements ConfigElement, java.io.Serializable
   {
  @@ -72,19 +72,19 @@
       
       private PsmlMetaInfo metaInfo;
            
  -    /** @see RegistryEntry#getName */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#getName */
       public String getName()
       {
           return this.name;
       }
                                   
  -    /** @see RegistryEntry#setName */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#setName */
       public void setName( String name )
       {
           this.name = name;
       }
   
  -    /** @see RegistryEntry#getTitle */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#getTitle */
       public String getTitle()
       {
           if (this.metaInfo != null)
  @@ -95,7 +95,7 @@
           return null;
       }
                                   
  -    /** @see RegistryEntry#setTitle */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#setTitle */
       public void setTitle(String title)
       {
           if (this.metaInfo == null)
  @@ -106,7 +106,7 @@
           this.metaInfo.setTitle(title);
       }
   
  -    /** @see RegistryEntry#getDescription */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#getDescription */
       public String getDescription()
       {
           if (this.metaInfo != null)
  @@ -117,7 +117,7 @@
           return null;
       }
                                   
  -    /** @see RegistryEntry#setDescription */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#setDescription */
       public void setDescription(String description)
       {
           if (this.metaInfo == null)
  
  
  
  1.2       +4 -4      jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/psml/PsmlControl.java
  
  Index: PsmlControl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/psml/PsmlControl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PsmlControl.java	2001/09/02 17:58:06	1.1
  +++ PsmlControl.java	2001/12/04 18:15:54	1.2
  @@ -61,22 +61,22 @@
    * entry
    * 
    * @author <a href="mailto:raphael@apache.org">Rapha�l Luta</a>
  - * @version $Id: PsmlControl.java,v 1.1 2001/09/02 17:58:06 raphael Exp $
  + * @version $Id: PsmlControl.java,v 1.2 2001/12/04 18:15:54 sgala Exp $
    */
   public class PsmlControl extends PsmlParametrable 
   {   
       private String name;
       
  -    /** @see RegistryEntry.getName */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#getName */
       public String getName()
       {
           return this.name;
       }
                                   
  -    /** @see RegistryEntry.setName */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#setName */
       public void setName( String name )
       {
           this.name = name;
       }
   
  -}
  \ No newline at end of file
  +}
  
  
  
  1.2       +4 -4      jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/psml/PsmlController.java
  
  Index: PsmlController.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/psml/PsmlController.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PsmlController.java	2001/09/02 17:58:06	1.1
  +++ PsmlController.java	2001/12/04 18:15:54	1.2
  @@ -61,21 +61,21 @@
    * of PSML documents.
    * 
    * @author <a href="mailto:raphael@apache.org">Rapha�l Luta</a>
  - * @version $Id: PsmlController.java,v 1.1 2001/09/02 17:58:06 raphael Exp $
  + * @version $Id: PsmlController.java,v 1.2 2001/12/04 18:15:54 sgala Exp $
    */
   public class PsmlController extends PsmlParametrable 
   {   
       private String name;
       
  -    /** @see RegistryEntry.getName */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#getName */
       public String getName()
       {
           return this.name;
       }
                                   
  -    /** @see RegistryEntry.setName */
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#setName */
       public void setName( String name )
       {
           this.name = name;
       }
  -}
  \ No newline at end of file
  +}
  
  
  
  1.2       +6 -6      jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/psml/PsmlSkin.java
  
  Index: PsmlSkin.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/om/profile/psml/PsmlSkin.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PsmlSkin.java	2001/09/02 17:58:06	1.1
  +++ PsmlSkin.java	2001/12/04 18:15:54	1.2
  @@ -61,22 +61,22 @@
    * entry
    * 
    * @author <a href="mailto:raphael@apache.org">Rapha�l Luta</a>
  - * @version $Id: PsmlSkin.java,v 1.1 2001/09/02 17:58:06 raphael Exp $
  + * @version $Id: PsmlSkin.java,v 1.2 2001/12/04 18:15:54 sgala Exp $
    */
   public class PsmlSkin extends PsmlParametrable 
   {   
       private String name;
       
  -    /** @see RegistryEntry.getName */
  -    public String getName()
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#getName */
  +         public String getName()
       {
           return this.name;
       }
                                   
  -    /** @see RegistryEntry.setName */
  -    public void setName( String name )
  +    /** @see org.apache.jetspeed.om.registry.RegistryEntry#setName */
  +     public void setName( String name )
       {
           this.name = name;
       }
   
  -}
  \ No newline at end of file
  +}
  
  
  
  1.2       +4 -4      jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base/BasePortletRegistry.java
  
  Index: BasePortletRegistry.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base/BasePortletRegistry.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BasePortletRegistry.java	2001/07/29 13:41:54	1.1
  +++ BasePortletRegistry.java	2001/12/04 18:15:54	1.2
  @@ -63,7 +63,7 @@
   Represents all items within Jetspeed that hold configuration information.
   
   @author <a href="mailto:burton@apache.org">Kevin A. Burton</a>
  -@version $Id: BasePortletRegistry.java,v 1.1 2001/07/29 13:41:54 raphael Exp $
  +@version $Id: BasePortletRegistry.java,v 1.2 2001/12/04 18:15:54 sgala Exp $
   */
   public class BasePortletRegistry extends BaseRegistry {
   
  @@ -76,7 +76,7 @@
       /**
          add and entry but also add it to the local entrygroup
          
  -       @see PortletEntry.addEntry
  +       @see BaseRegistry#addEntry
       */
       public final void addEntry( PortletEntry entry ) throws RegistryException { 
   
  @@ -95,7 +95,7 @@
       /**
          remove and entry but also remove it to the local entrygroup
          
  -       @see PortletEntry.removeEntry
  +       @see #removeEntry( PortletEntry )
       */
       public final void removeEntry( String name ) {
   
  @@ -113,7 +113,7 @@
       /**
          remove and entry but also remove it to the local entrygroup
          
  -       @see PortletEntry.removeEntry
  +       @see BaseRegistry#removeEntry( RegistryEntry )
       */
       public final void removeEntry( PortletEntry entry ) {
   
  
  
  
  1.2       +11 -11    jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base/BaseRegistry.java
  
  Index: BaseRegistry.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/om/registry/base/BaseRegistry.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BaseRegistry.java	2001/07/29 13:41:54	1.1
  +++ BaseRegistry.java	2001/12/04 18:15:54	1.2
  @@ -66,20 +66,20 @@
    *
    * @author <a href="mailto:burton@apache.org">Kevin A. Burton</a>
    * @author <a href="mailto:raphael@apache.org">Rapha�l Luta</a>
  - * @version $Id: BaseRegistry.java,v 1.1 2001/07/29 13:41:54 raphael Exp $
  + * @version $Id: BaseRegistry.java,v 1.2 2001/12/04 18:15:54 sgala Exp $
    */
   public class BaseRegistry implements Registry
   {
           
       private Map entries = new TreeMap();
   
  -    /** @see Registry.getEntryCount */
  +    /** @see Registry#getEntryCount */
       public int getEntryCount()
       {
           return this.entries.size();
       }
           
  -    /** @see Registry.getEntry */
  +    /** @see Registry#getEntry */
       public RegistryEntry getEntry( String name ) throws InvalidEntryException
       {
   
  @@ -99,7 +99,7 @@
       }
   
       /**
  -    @see Registry.setEntry
  +    @see Registry#setEntry
       */
       public void setEntry( RegistryEntry entry ) throws InvalidEntryException
       {
  @@ -115,7 +115,7 @@
       }
   
       /**
  -    @see Registry.addEntry
  +    @see Registry#addEntry
       */
       public void addEntry( RegistryEntry entry ) throws InvalidEntryException
       {
  @@ -131,7 +131,7 @@
       }
   
       /**
  -       @see Registry.hasEntry
  +       @see Registry#hasEntry
       */
       public boolean hasEntry( String name )
       {
  @@ -139,7 +139,7 @@
       }
       
       /**
  -    @see Registry.removeEntry
  +    @see Registry#removeEntry
       */
       public void removeEntry( String name )
       {
  @@ -150,7 +150,7 @@
       }
   
       /**
  -    @see Registry.removeEntry
  +    @see Registry#removeEntry
       */
   
       public void removeEntry( RegistryEntry entry )
  @@ -162,7 +162,7 @@
       }
   
       /**
  -       @see Registry.getEntries
  +       @see Registry#getEntries
        */
       public Enumeration getEntries()
       {
  @@ -178,7 +178,7 @@
       }
   
       /**
  -       @see Registry.listEntryNames
  +       @see Registry#listEntryNames
        */
       public Iterator listEntryNames()
       {
  @@ -186,7 +186,7 @@
       }
   
       /**
  -       @see Registry.toArray
  +       @see Registry#toArray
        */
       public RegistryEntry[] toArray()
       {
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>