[jboss-cvs] jboss-seam/src/main/org/jboss/seam/theme ...

Gavin King gavin.king at jboss.com
Fri Nov 24 18:15:19 EST 2006


  User: gavin   
  Date: 06/11/24 18:15:19

  Modified:    src/main/org/jboss/seam/theme   Theme.java
                        ThemeSelector.java
  Log:
   JBSEAM-293 component precedence
  
  Revision  Changes    Path
  1.3       +3 -0      jboss-seam/src/main/org/jboss/seam/theme/Theme.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Theme.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/theme/Theme.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- Theme.java	16 Nov 2006 17:25:06 -0000	1.2
  +++ Theme.java	24 Nov 2006 23:15:19 -0000	1.3
  @@ -1,6 +1,7 @@
   package org.jboss.seam.theme;
   
   import static org.jboss.seam.InterceptionType.NEVER;
  +import static org.jboss.seam.annotations.Install.BUILT_IN;
   
   import java.io.Serializable;
   import java.util.AbstractMap;
  @@ -12,6 +13,7 @@
   
   import org.jboss.seam.Component;
   import org.jboss.seam.ScopeType;
  +import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Intercept;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
  @@ -26,6 +28,7 @@
   @Scope(ScopeType.SESSION)
   @Intercept(NEVER)
   @Name("org.jboss.seam.theme.theme")
  + at Install(precedence=BUILT_IN)
   public class Theme implements Serializable {
      
      private transient Map messages;
  
  
  
  1.7       +3 -0      jboss-seam/src/main/org/jboss/seam/theme/ThemeSelector.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ThemeSelector.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/theme/ThemeSelector.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- ThemeSelector.java	17 Nov 2006 02:35:46 -0000	1.6
  +++ ThemeSelector.java	24 Nov 2006 23:15:19 -0000	1.7
  @@ -1,6 +1,7 @@
   package org.jboss.seam.theme;
   
   import static org.jboss.seam.InterceptionType.NEVER;
  +import static org.jboss.seam.annotations.Install.BUILT_IN;
   
   import java.io.Serializable;
   import java.util.ArrayList;
  @@ -20,6 +21,7 @@
   import org.jboss.seam.ScopeType;
   import org.jboss.seam.Seam;
   import org.jboss.seam.annotations.Create;
  +import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Intercept;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
  @@ -35,6 +37,7 @@
   @Scope(ScopeType.SESSION)
   @Name("org.jboss.seam.theme.themeSelector")
   @Intercept(NEVER)
  + at Install(precedence=BUILT_IN)
   public class ThemeSelector extends AbstractMutable implements Serializable
   {
      private static final Log log = LogFactory.getLog(ThemeSelector.class);
  
  
  



More information about the jboss-cvs-commits mailing list