[jboss-cvs] jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/search/metamodel ...

Christian Bauer christian at hibernate.org
Fri Aug 17 09:00:32 EDT 2007


  User: cbauer  
  Date: 07/08/17 09:00:32

  Modified:    examples/wiki/src/main/org/jboss/seam/wiki/core/search/metamodel  
                        SearchSupport.java SearchRegistry.java
  Log:
  Major refactoring of core data schema and some new features
  
  Revision  Changes    Path
  1.2       +8 -2      jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/search/metamodel/SearchSupport.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SearchSupport.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/search/metamodel/SearchSupport.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SearchSupport.java	12 Jun 2007 12:30:00 -0000	1.1
  +++ SearchSupport.java	17 Aug 2007 13:00:32 -0000	1.2
  @@ -1,3 +1,9 @@
  +/*
  + * JBoss, Home of Professional Open Source
  + *
  + * Distributable under LGPL license.
  + * See terms of license at gnu.org.
  + */
   package org.jboss.seam.wiki.core.search.metamodel;
   
   import org.jboss.seam.annotations.Observer;
  @@ -50,7 +56,7 @@
        * <p>
        * Pass in a <tt>NullFragmenter</tt> if you don't want any fragmentation by terms but
        * simply the hits highlighted. Otherwise, you will most likely use <tt>SimpleFragmenter</tt>.
  -     * The text you supply must be the same that was indexed, it will be run through the same
  +     * The text you supply must be the same that was indexed, it will go through the same
        * analysis procedure to find the hits. Do not pass a different String than the one indexed
        * by Hibernate Search! If you use transparent string bridge with Hibernate Search, run the
        * bridge before passing the string into this method.
  @@ -138,7 +144,7 @@
       }
   
       /**
  -     * Create an return any <tt>SearchableEntityHandler</tt> you require search functionality for.
  +     * Create and return any <tt>SearchableEntityHandler</tt> you require search functionality for.
        * <p>
        * This is called on startup only by the internal registry, to assemble all handlers.
        *
  
  
  
  1.4       +0 -1      jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/search/metamodel/SearchRegistry.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SearchRegistry.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/src/main/org/jboss/seam/wiki/core/search/metamodel/SearchRegistry.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- SearchRegistry.java	11 Jul 2007 16:17:46 -0000	1.3
  +++ SearchRegistry.java	17 Aug 2007 13:00:32 -0000	1.4
  @@ -26,7 +26,6 @@
    */
   @Name("searchRegistry")
   @Scope(ScopeType.APPLICATION)
  - at Startup
   public class SearchRegistry {
   
       @Logger
  
  
  



More information about the jboss-cvs-commits mailing list