[jsword-svn] jsword/java/jsword/org/crosswire/jsword/book/search s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Mon May 9 19:11:42 MST 2005


Update of /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search
In directory www.crosswire.org:/tmp/cvs-serv11663/java/jsword/org/crosswire/jsword/book/search

Modified Files:
	Index.java Searcher.java SearchSyntaxFactory.java 
	IndexManagerFactory.java IndexManager.java SearchType.java 
	SearchRequest.java SearcherFactory.java SearchSyntax.java 
	SearchModifier.java 
Log Message:
Moved GPL to be a file comment.
Fixed the JSword build fail on missing resource diirectory.
Made ant clean also remove the keystore file.

Index: SearchSyntax.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/SearchSyntax.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SearchSyntax.java	2 May 2005 01:29:32 -0000	1.2
--- SearchSyntax.java	10 May 2005 02:11:40 -0000	1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 5,28 ****
   * appropriate for the Searcher.
   * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author DM Smith [ dmsmith555 at yahoo dot com]
-  * @version $Id$
   */
  public interface SearchSyntax
--- 26,32 ----
   * appropriate for the Searcher.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author DM Smith [ dmsmith555 at yahoo dot com]
   */
  public interface SearchSyntax

Index: SearchRequest.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/SearchRequest.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SearchRequest.java	2 May 2005 01:29:32 -0000	1.2
--- SearchRequest.java	10 May 2005 02:11:40 -0000	1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 4,27 ****
   * A SearchRequest consists of a string and modifiers for the search.
   * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author DM Smith [dmsmith555 at yahoo dot com]
-  * @version $Id$
   */
  public interface SearchRequest
--- 25,31 ----
   * A SearchRequest consists of a string and modifiers for the search.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author DM Smith [dmsmith555 at yahoo dot com]
   */
  public interface SearchRequest

Index: SearchSyntaxFactory.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/SearchSyntaxFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SearchSyntaxFactory.java	2 May 2005 01:29:32 -0000	1.2
--- SearchSyntaxFactory.java	10 May 2005 02:11:40 -0000	1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 7,30 ****
   * A Factory class for SearchSyntax.
   * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author DM Smith [dmsmith555 at yahoo dot com]
-  * @version $Id$
   */
  public class SearchSyntaxFactory
--- 28,34 ----
   * A Factory class for SearchSyntax.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author DM Smith [dmsmith555 at yahoo dot com]
   */
  public class SearchSyntaxFactory

Index: IndexManagerFactory.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/IndexManagerFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** IndexManagerFactory.java	6 Mar 2005 20:21:47 -0000	1.2
--- IndexManagerFactory.java	10 May 2005 02:11:40 -0000	1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 7,30 ****
   * A Factory class for IndexManagers.
   * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author Joe Walker [joe at eireneh dot com]
!  * @version $Id$
   */
  public class IndexManagerFactory
--- 28,35 ----
   * A Factory class for IndexManagers.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
! 
   */
  public class IndexManagerFactory

Index: Searcher.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/Searcher.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Searcher.java	1 Apr 2005 17:09:46 -0000	1.7
--- Searcher.java	10 May 2005 02:11:40 -0000	1.8
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 7,30 ****
   * The central interface to all searching.
   * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author Joe Walker [joe at eireneh dot com]
-  * @version $Id$
   */
  public interface Searcher
--- 28,34 ----
   * The central interface to all searching.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
   */
  public interface Searcher

Index: IndexManager.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/IndexManager.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** IndexManager.java	19 Mar 2005 01:56:47 -0000	1.5
--- IndexManager.java	10 May 2005 02:11:40 -0000	1.6
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 9,32 ****
   * A way of managing a way of creating a search index for a book.
   * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author Joe Walker [joe at eireneh dot com]
-  * @version $Id$
   */
  public interface IndexManager
--- 30,36 ----
   * A way of managing a way of creating a search index for a book.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
   */
  public interface IndexManager

Index: SearchType.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/SearchType.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** SearchType.java	9 May 2005 01:29:06 -0000	1.3
--- SearchType.java	10 May 2005 02:11:40 -0000	1.4
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 6,30 ****
   * An Enumeration of the possible types of Searches.
   * 
!  * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author DM Smith [dmsmith555 at yahoo dot com]
-  * @version $Id$
   */
  public abstract class SearchType implements Serializable
--- 27,33 ----
   * An Enumeration of the possible types of Searches.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author DM Smith [dmsmith555 at yahoo dot com]
   */
  public abstract class SearchType implements Serializable

Index: Index.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/Index.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** Index.java	25 Apr 2005 01:22:23 -0000	1.11
--- Index.java	10 May 2005 02:11:40 -0000	1.12
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 8,31 ****
   * An index into a body of text that knows what words exist and where they are.
   *
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author Joe Walker [joe at eireneh dot com]
-  * @version $Id$
   */
  public interface Index
--- 29,35 ----
   * An index into a body of text that knows what words exist and where they are.
   *
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
   */
  public interface Index

Index: SearchModifier.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/SearchModifier.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SearchModifier.java	2 May 2005 01:29:32 -0000	1.2
--- SearchModifier.java	10 May 2005 02:11:40 -0000	1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 5,28 ****
   * can be done to a search.
   * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author DM Smith [dmsmith555 at yahoo dot com]
-  * @version $Id$
   */
  public interface SearchModifier
--- 26,32 ----
   * can be done to a search.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author DM Smith [dmsmith555 at yahoo dot com]
   */
  public interface SearchModifier

Index: SearcherFactory.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/search/SearcherFactory.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** SearcherFactory.java	9 Oct 2004 21:45:04 -0000	1.2
--- SearcherFactory.java	10 May 2005 02:11:40 -0000	1.3
***************
*** 1,2 ****
--- 1,23 ----
+ /**
+  * Distribution License:
+  * JSword is free software; you can redistribute it and/or modify it under
+  * the terms of the GNU General Public License, version 2 as published by
+  * the Free Software Foundation. This program is distributed in the hope
+  * that it will be useful, but WITHOUT ANY WARRANTY; without even the
+  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+  * See the GNU General Public License for more details.
+  *
+  * The License is available on the internet at:
+  *       http://www.gnu.org/copyleft/gpl.html
+  * or by writing to:
+  *      Free Software Foundation, Inc.
+  *      59 Temple Place - Suite 330
+  *      Boston, MA 02111-1307, USA
+  *
+  * Copyright: 2005
+  *     The copyright to this program is held by it's authors.
+  *
+  * ID: $ID$
+  */
  package org.crosswire.jsword.book.search;
  
***************
*** 8,31 ****
   * Factory method for creating a new Searcher.
   * 
!  * <p><table border='1' cellPadding='3' cellSpacing='0'>
!  * <tr><td bgColor='white' class='TableRowColor'><font size='-7'>
!  *
!  * Distribution Licence:<br />
!  * JSword is free software; you can redistribute it
!  * and/or modify it under the terms of the GNU General Public License,
!  * version 2 as published by the Free Software Foundation.<br />
!  * This program is distributed in the hope that it will be useful,
!  * but WITHOUT ANY WARRANTY; without even the implied warranty of
!  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
!  * General Public License for more details.<br />
!  * The License is available on the internet
!  * <a href='http://www.gnu.org/copyleft/gpl.html'>here</a>, or by writing to:
!  * Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
!  * MA 02111-1307, USA<br />
!  * The copyright to this program is held by it's authors.
!  * </font></td></tr></table>
!  * @see gnu.gpl.Licence
   * @author Joe Walker [joe at eireneh dot com]
-  * @version $Id$
   */
  public class SearcherFactory
--- 29,35 ----
   * Factory method for creating a new Searcher.
   * 
!  * @see gnu.gpl.Licence for license details.
!  *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
   */
  public class SearcherFactory



More information about the jsword-svn mailing list