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

Gavin King gavin.king at jboss.com
Fri Oct 27 08:58:09 EDT 2006


  User: gavin   
  Date: 06/10/27 08:58:09

  Modified:    src/main/org/jboss/seam/deployment  Scanner.java
  Log:
  use a component to persist page-scoped data
  change how page parameters are stored
  improve test harness
  
  Revision  Changes    Path
  1.14      +8 -2      jboss-seam/src/main/org/jboss/seam/deployment/Scanner.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Scanner.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/deployment/Scanner.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- Scanner.java	15 Oct 2006 21:55:41 -0000	1.13
  +++ Scanner.java	27 Oct 2006 12:58:09 -0000	1.14
  @@ -1,4 +1,4 @@
  -//$Id: Scanner.java,v 1.13 2006/10/15 21:55:41 gavin Exp $
  +//$Id: Scanner.java,v 1.14 2006/10/27 12:58:09 gavin Exp $
   package org.jboss.seam.deployment;
   
   import java.io.DataInputStream;
  @@ -135,7 +135,13 @@
   
      private void handleItem(Set<Class<Object>> result, String name)
      {
  -      if ( name.endsWith(".class") && !name.startsWith("org/jboss/seam/core") )
  +      if ( 
  +            name.endsWith(".class") && 
  +            !name.startsWith("org/jboss/seam/core") 
  +            && !name.startsWith("org/jboss/seam/persistence")
  +            && !name.startsWith("org/jboss/seam/debug")
  +            && !name.startsWith("org/jboss/seam/theme")
  +         )
         {
            String classname = filenameToClassname(name);
            try
  
  
  



More information about the jboss-cvs-commits mailing list