jford       2004/10/06 09:37:40

  Modified:    components/registry/src/java/org/apache/jetspeed/om/portlet/impl
                        StoreablePortletDefinitionDelegate.java
                        PortletDefinitionImpl.java
               jetspeed-api/src/java/org/apache/jetspeed/om/common/portlet
                        PortletDefinitionComposite.java
  Log:
  Added method to retrieve DescriptionSet
  
  Revision  Changes    Path
  1.14      +5 -0      
jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/portlet/impl/StoreablePortletDefinitionDelegate.java
  
  Index: StoreablePortletDefinitionDelegate.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/portlet/impl/StoreablePortletDefinitionDelegate.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- StoreablePortletDefinitionDelegate.java   29 Sep 2004 21:57:30 -0000      1.13
  +++ StoreablePortletDefinitionDelegate.java   6 Oct 2004 16:37:40 -0000       1.14
  @@ -368,6 +368,11 @@
                portlet.addDescription(locale, description);
   
       }
  +    
  +    public DescriptionSet getDescriptionSet()
  +    {
  +        return portlet.getDescriptionSet();
  +    }
   
       /** 
        * <p>
  
  
  
  1.24      +6 -1      
jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/portlet/impl/PortletDefinitionImpl.java
  
  Index: PortletDefinitionImpl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed-2/components/registry/src/java/org/apache/jetspeed/om/portlet/impl/PortletDefinitionImpl.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- PortletDefinitionImpl.java        29 Sep 2004 21:57:30 -0000      1.23
  +++ PortletDefinitionImpl.java        6 Oct 2004 16:37:40 -0000       1.24
  @@ -634,6 +634,11 @@
           }
           return null;
       }
  +    
  +    public DescriptionSet getDescriptionSet()
  +    {
  +        return this.descListWrapper;
  +    }
   
       /**
        * @see 
org.apache.jetspeed.om.common.portlet.PortletDefinitionComposite#addDescription(java.util.Locale,
  
  
  
  1.9       +3 -1      
jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/om/common/portlet/PortletDefinitionComposite.java
  
  Index: PortletDefinitionComposite.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jetspeed-2/jetspeed-api/src/java/org/apache/jetspeed/om/common/portlet/PortletDefinitionComposite.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- PortletDefinitionComposite.java   29 Sep 2004 21:57:30 -0000      1.8
  +++ PortletDefinitionComposite.java   6 Oct 2004 16:37:40 -0000       1.9
  @@ -163,6 +163,8 @@
       String getDescriptionText(Locale locale);
   
       void addDescription(Locale locale, String description);
  +    
  +    DescriptionSet getDescriptionSet();
   
       void addDisplayName(Locale locale, String displayName);
   
  
  
  

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

Reply via email to