[jbossseam-issues] [JBoss JIRA] Updated: (JBSEAM-3510) Pluggable Resource Bundles

John Gilbert (JIRA) jira-events at lists.jboss.org
Sun Oct 5 15:45:21 EDT 2008


     [ https://jira.jboss.org/jira/browse/JBSEAM-3510?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

John Gilbert updated JBSEAM-3510:
---------------------------------

    Attachment: ResourceLoader.java


The change is to the setBundleNames() method: 

   public void setBundleNames(String[] bundleNames)
   {
      Set<String> set = new HashSet<String>();
      set.addAll(Arrays.asList(this.bundleNames));
      set.addAll(Arrays.asList(bundleNames));
      this.bundleNames = set.toArray(this.bundleNames);
   }



> Pluggable Resource Bundles
> --------------------------
>
>                 Key: JBSEAM-3510
>                 URL: https://jira.jboss.org/jira/browse/JBSEAM-3510
>             Project: Seam
>          Issue Type: Feature Request
>    Affects Versions: 2.0.2.SP1
>            Reporter: John Gilbert
>         Attachments: ResourceLoader.java
>
>
> This is an enhancement to ResourceLoader.java such that multiple components.xml files can add bundleNames without overriding the previous assignments. 
> The motivation for this is the ability to compose a seam application from decoupled subsystems.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list