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

jswordcvs at crosswire.org jswordcvs at crosswire.org
Mon May 16 17:43:24 MST 2005


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

Modified Files:
	Msg.java FilterException.java Filter.java FilterUtil.java 
	FilterFactory.java 
Log Message:
Added support for CheckStyle plugin.
Added a few more CheckStyle rules.
Fixed a spelling mistake.

Index: FilterFactory.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/FilterFactory.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** FilterFactory.java	10 May 2005 02:39:23 -0000	1.11
--- FilterFactory.java	17 May 2005 00:43:17 -0000	1.12
***************
*** 32,40 ****
   * A simple container for all the known filters.
   *
!  * @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 FilterFactory
  {
      /**
--- 32,40 ----
   * A simple container for all the known filters.
   *
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
   */
! public final class FilterFactory
  {
      /**

Index: FilterException.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/FilterException.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** FilterException.java	10 May 2005 02:39:23 -0000	1.8
--- FilterException.java	17 May 2005 00:43:17 -0000	1.9
***************
*** 28,32 ****
   * Something went wrong with 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]
--- 28,32 ----
   * Something went wrong with a Book.
   * 
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]

Index: FilterUtil.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/FilterUtil.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** FilterUtil.java	10 May 2005 02:39:23 -0000	1.7
--- FilterUtil.java	17 May 2005 00:43:17 -0000	1.8
***************
*** 29,37 ****
   * parsing but don't want to output too much data. forOutput() helps.
   *
!  * @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 FilterUtil
  {
      /**
--- 29,37 ----
   * parsing but don't want to output too much data. forOutput() helps.
   *
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
   */
! public final class FilterUtil
  {
      /**

Index: Filter.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/Filter.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Filter.java	10 May 2005 02:39:23 -0000	1.9
--- Filter.java	17 May 2005 00:43:17 -0000	1.10
***************
*** 29,33 ****
   * A generic interface for things that can convert a String into OSIS data.
   * 
!  * @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]
--- 29,33 ----
   * A generic interface for things that can convert a String into OSIS data.
   * 
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
***************
*** 41,44 ****
       * @return a List of OSIS Elements
       */
!     public List toOSIS(Key key, String plain) throws FilterException;
  }
--- 41,44 ----
       * @return a List of OSIS Elements
       */
!     List toOSIS(Key key, String plain) throws FilterException;
  }

Index: Msg.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/filter/Msg.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** Msg.java	10 May 2005 02:39:23 -0000	1.10
--- Msg.java	17 May 2005 00:43:17 -0000	1.11
***************
*** 27,35 ****
   * Compile safe Msg resource settings.
   * 
!  * @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]
   */
! class Msg extends MsgBase
  {
      static final Msg TRUNCATED = new Msg("FilterUtil.Truncated"); //$NON-NLS-1$
--- 27,35 ----
   * Compile safe Msg resource settings.
   * 
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author Joe Walker [joe at eireneh dot com]
   */
! final class Msg extends MsgBase
  {
      static final Msg TRUNCATED = new Msg("FilterUtil.Truncated"); //$NON-NLS-1$



More information about the jsword-svn mailing list