[jsword-svn] bibledesktop/java/main/org/crosswire/bibledesktop/passage s

jswordcvs at crosswire.org jswordcvs at crosswire.org
Mon May 16 17:44:33 MST 2005


Update of /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage
In directory www.crosswire.org:/tmp/cvs-serv25025/java/main/org/crosswire/bibledesktop/passage

Modified Files:
	KeySidebar.java Msg.java KeyChangeListener.java 
	KeyListListModel.java PassageGuiUtil.java 
	WholeBibleTreeModel.java KeyChangeEvent.java 
	WholeBibleTreeNode.java PassageListModel.java 
Log Message:
Added support for CheckStyle plugin.
Added a few more CheckStyle rules.
Fixed a spelling mistake.

Index: PassageGuiUtil.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/PassageGuiUtil.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** PassageGuiUtil.java	10 May 2005 02:40:11 -0000	1.9
--- PassageGuiUtil.java	17 May 2005 00:44:31 -0000	1.10
***************
*** 31,39 ****
   * provide Passage related actions.
   * 
!  * @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 PassageGuiUtil
  {
      /**
--- 31,39 ----
   * provide Passage related actions.
   * 
!  * @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 PassageGuiUtil
  {
      /**

Index: Msg.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/Msg.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Msg.java	10 May 2005 02:40:11 -0000	1.4
--- Msg.java	17 May 2005 00:44:31 -0000	1.5
***************
*** 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 WHOLE_BIBLE = new Msg("BibleTreeNode.WholeBible"); //$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 WHOLE_BIBLE = new Msg("BibleTreeNode.WholeBible"); //$NON-NLS-1$

Index: KeySidebar.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/KeySidebar.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** KeySidebar.java	10 May 2005 02:40:11 -0000	1.10
--- KeySidebar.java	17 May 2005 00:44:31 -0000	1.11
***************
*** 49,53 ****
   * A list view of a key range list.
   *
!  * @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]
--- 49,53 ----
   * A list view of a key range list.
   *
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [dmsmith555 at yahoo dot com]
***************
*** 201,205 ****
              if (selected.length > 0)
              {
!                partial = book.createEmptyKeyList();
  
                  for (int i = 0; i < selected.length; i++)
--- 201,205 ----
              if (selected.length > 0)
              {
!                 partial = book.createEmptyKeyList();
  
                  for (int i = 0; i < selected.length; i++)

Index: KeyChangeEvent.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/KeyChangeEvent.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** KeyChangeEvent.java	10 May 2005 02:40:11 -0000	1.5
--- KeyChangeEvent.java	17 May 2005 00:44:31 -0000	1.6
***************
*** 29,33 ****
   * A KeyChangeEvent happens whenever a user changes a key.
   * 
!  * @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]
--- 29,33 ----
   * A KeyChangeEvent happens whenever a user changes a key.
   * 
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [dmsmith555 at yahoo dot com]

Index: WholeBibleTreeModel.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/WholeBibleTreeModel.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** WholeBibleTreeModel.java	10 May 2005 02:40:11 -0000	1.6
--- WholeBibleTreeModel.java	17 May 2005 00:44:31 -0000	1.7
***************
*** 28,32 ****
   * TreeNodes, and simply extending DefaultTreeModel.
   * 
!  * @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 ----
   * TreeNodes, and simply extending DefaultTreeModel.
   * 
!  * @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: WholeBibleTreeNode.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/WholeBibleTreeNode.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** WholeBibleTreeNode.java	10 May 2005 02:40:11 -0000	1.7
--- WholeBibleTreeNode.java	17 May 2005 00:44:31 -0000	1.8
***************
*** 34,42 ****
   * A PassageTreeNode extends TreeNode to Model a Passage.
   *
!  * @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 WholeBibleTreeNode implements TreeNode
  {
      /**
--- 34,42 ----
   * A PassageTreeNode extends TreeNode to Model a Passage.
   *
!  * @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 WholeBibleTreeNode implements TreeNode
  {
      /**

Index: KeyChangeListener.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/KeyChangeListener.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** KeyChangeListener.java	10 May 2005 02:40:11 -0000	1.3
--- KeyChangeListener.java	17 May 2005 00:44:31 -0000	1.4
***************
*** 28,32 ****
   * changes a Key.
   * 
!  * @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]
--- 28,32 ----
   * changes a Key.
   * 
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [dmsmith555 at yahoo dot com]
***************
*** 38,42 ****
       * @param ev Describes the change
       */
!     public void keyChanged(KeyChangeEvent ev);
  
  }
--- 38,42 ----
       * @param ev Describes the change
       */
!     void keyChanged(KeyChangeEvent ev);
  
  }

Index: PassageListModel.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/PassageListModel.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** PassageListModel.java	10 May 2005 02:40:11 -0000	1.12
--- PassageListModel.java	17 May 2005 00:44:31 -0000	1.13
***************
*** 34,38 ****
   * ListModel.
   *
!  * @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]
--- 34,38 ----
   * ListModel.
   *
!  * @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: KeyListListModel.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/passage/KeyListListModel.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** KeyListListModel.java	10 May 2005 02:40:11 -0000	1.10
--- KeyListListModel.java	17 May 2005 00:44:31 -0000	1.11
***************
*** 30,34 ****
   * A simple implementation of ListModel that is backed by a SortedSet.
   * 
!  * @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]
--- 30,34 ----
   * A simple implementation of ListModel that is backed by a SortedSet.
   * 
!  * @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]



More information about the jsword-svn mailing list