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

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


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

  Modified:    src/main/org/jboss/seam/debug   Contexts.java
                        Introspector.java
  Log:
   JBSEAM-293 component precedence
  
  Revision  Changes    Path
  1.11      +3 -1      jboss-seam/src/main/org/jboss/seam/debug/Contexts.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Contexts.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/debug/Contexts.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- Contexts.java	18 Nov 2006 00:38:22 -0000	1.10
  +++ Contexts.java	24 Nov 2006 23:15:18 -0000	1.11
  @@ -1,5 +1,7 @@
   package org.jboss.seam.debug;
   
  +import static org.jboss.seam.annotations.Install.BUILT_IN;
  +
   import java.util.ArrayList;
   import java.util.Arrays;
   import java.util.List;
  @@ -13,7 +15,7 @@
   
   @Name("org.jboss.seam.debug.contexts")
   @Scope(ScopeType.APPLICATION)
  - at Install(false)
  + at Install(value=false, precedence=BUILT_IN)
   public class Contexts 
   {
      public List<ConversationEntry> getConversationEntries()
  
  
  
  1.8       +3 -1      jboss-seam/src/main/org/jboss/seam/debug/Introspector.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Introspector.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/debug/Introspector.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- Introspector.java	18 Nov 2006 00:38:22 -0000	1.7
  +++ Introspector.java	24 Nov 2006 23:15:18 -0000	1.8
  @@ -1,5 +1,7 @@
   package org.jboss.seam.debug;
   
  +import static org.jboss.seam.annotations.Install.BUILT_IN;
  +
   import java.beans.BeanInfo;
   import java.beans.IntrospectionException;
   import java.beans.PropertyDescriptor;
  @@ -15,7 +17,7 @@
   import org.jboss.seam.contexts.Contexts;
   
   @Name("org.jboss.seam.debug.introspector")
  - at Install(false)
  + at Install(value=false, precedence=BUILT_IN)
   public class Introspector {
      
      @RequestParameter
  
  
  



More information about the jboss-cvs-commits mailing list