[jsword-svn] bibledesktop/java/main/org/crosswire/bibledesktop/display 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/display
In directory www.crosswire.org:/tmp/cvs-serv25025/java/main/org/crosswire/bibledesktop/display

Modified Files:
	BookDataDisplay.java URLEvent.java BookDataDisplayFactory.java 
	URLEventListener.java 
Log Message:
Added support for CheckStyle plugin.
Added a few more CheckStyle rules.
Fixed a spelling mistake.

Index: URLEventListener.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/display/URLEventListener.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** URLEventListener.java	10 May 2005 02:40:11 -0000	1.3
--- URLEventListener.java	17 May 2005 00:44:31 -0000	1.4
***************
*** 28,32 ****
   * activates an URL.
   * 
!  * @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 ----
   * activates an URL.
   * 
!  * @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 URL
       */
!     public void activateURL(URLEvent ev);
  
      /**
--- 38,42 ----
       * @param ev Describes the URL
       */
!     void activateURL(URLEvent ev);
  
      /**
***************
*** 44,48 ****
       * @param ev Describes the URL
       */
!     public void enterURL(URLEvent ev);
  
      /**
--- 44,48 ----
       * @param ev Describes the URL
       */
!     void enterURL(URLEvent ev);
  
      /**
***************
*** 50,53 ****
       * @param ev Describes the URL
       */
!     public void leaveURL(URLEvent ev);
  }
--- 50,53 ----
       * @param ev Describes the URL
       */
!     void leaveURL(URLEvent ev);
  }

Index: URLEvent.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/display/URLEvent.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** URLEvent.java	10 May 2005 02:40:11 -0000	1.6
--- URLEvent.java	17 May 2005 00:44:31 -0000	1.7
***************
*** 27,31 ****
   * 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]
--- 27,31 ----
   * 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: BookDataDisplay.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/display/BookDataDisplay.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** BookDataDisplay.java	10 May 2005 02:40:11 -0000	1.9
--- BookDataDisplay.java	17 May 2005 00:44:31 -0000	1.10
***************
*** 30,34 ****
   * An interface for all components that can display BookData.
   * 
!  * @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 ----
   * An interface for all components that can display BookData.
   * 
!  * @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]
***************
*** 39,43 ****
       * Copy the selection to the clipboard
       */
!     public void copy();
  
      /**
--- 39,43 ----
       * Copy the selection to the clipboard
       */
!     void copy();
  
      /**
***************
*** 45,49 ****
       * @param listener The listener to add
       */
!     public void addURLEventListener(URLEventListener listener);
  
      /**
--- 45,49 ----
       * @param listener The listener to add
       */
!     void addURLEventListener(URLEventListener listener);
  
      /**
***************
*** 51,60 ****
       * @param listener The listener to remove
       */
!     public void removeURLEventListener(URLEventListener listener);
  
      /**
       * Accessor for the Swing component
       */
!     public Component getComponent();
  
      /**
--- 51,60 ----
       * @param listener The listener to remove
       */
!     void removeURLEventListener(URLEventListener listener);
  
      /**
       * Accessor for the Swing component
       */
!     Component getComponent();
  
      /**
***************
*** 67,76 ****
       * @param key The key to read from the given book
       */
!     public void setBookData(Book book, Key key);
  
      /**
       * Cause the BookData to be re-displayed.
       */
!     public void refresh();
  
      /**
--- 67,76 ----
       * @param key The key to read from the given book
       */
!     void setBookData(Book book, Key key);
  
      /**
       * Cause the BookData to be re-displayed.
       */
!     void refresh();
  
      /**
***************
*** 79,83 ****
       * @return The current key
       */
!     public Key getKey();
  
      /**
--- 79,83 ----
       * @return The current key
       */
!     Key getKey();
  
      /**
***************
*** 86,89 ****
       * @return The current book
       */
!     public Book getBook();
  }
--- 86,89 ----
       * @return The current book
       */
!     Book getBook();
  }

Index: BookDataDisplayFactory.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/display/BookDataDisplayFactory.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** BookDataDisplayFactory.java	10 May 2005 02:40:11 -0000	1.4
--- BookDataDisplayFactory.java	17 May 2005 00:44:31 -0000	1.5
***************
*** 27,35 ****
   * Factory for OSIS renderers.
   * 
!  * @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 BookDataDisplayFactory
  {
      /**
--- 27,35 ----
   * Factory for OSIS renderers.
   * 
!  * @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 BookDataDisplayFactory
  {
      /**



More information about the jsword-svn mailing list