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

Modified Files:
	DesktopActions.java Splash.java AboutPane.java Msg.java 
	StatusBar.java Desktop.java ViewSourcePane.java 
	XSLTProperty.java 
Log Message:
Added support for CheckStyle plugin.
Added a few more CheckStyle rules.
Fixed a spelling mistake.

Index: XSLTProperty.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/desktop/XSLTProperty.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** XSLTProperty.java	10 May 2005 02:40:11 -0000	1.5
--- XSLTProperty.java	17 May 2005 00:44:31 -0000	1.6
***************
*** 28,36 ****
   * Defines properties that control the behavior of translating OSIS to HTML.
   * 
!  * @see gnu.gpl.Licence for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [ dmsmith555 at hotmail dot com]
   */
! public class XSLTProperty implements Serializable
  {
  
--- 28,36 ----
   * Defines properties that control the behavior of translating OSIS to HTML.
   * 
!  * @see gnu.gpl.License for license details.
   *      The copyright to this program is held by it's authors.
   * @author DM Smith [ dmsmith555 at hotmail dot com]
   */
! public final class XSLTProperty implements Serializable
  {
  
***************
*** 132,136 ****
       * @see java.lang.Object#equals(java.lang.Object)
       */
!     public final boolean equals(Object o)
      {
          return super.equals(o);
--- 132,136 ----
       * @see java.lang.Object#equals(java.lang.Object)
       */
!     public boolean equals(Object o)
      {
          return super.equals(o);
***************
*** 141,145 ****
       * @see java.lang.Object#hashCode()
       */
!     public final int hashCode()
      {
          return super.hashCode();
--- 141,145 ----
       * @see java.lang.Object#hashCode()
       */
!     public int hashCode()
      {
          return super.hashCode();

Index: Msg.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/desktop/Msg.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** Msg.java	10 May 2005 02:40:11 -0000	1.15
--- Msg.java	17 May 2005 00:44:31 -0000	1.16
***************
*** 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]
   */
! public class Msg extends MsgBase
  {
      // Strings used by Desktop
--- 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]
   */
! public final class Msg extends MsgBase
  {
      // Strings used by Desktop

Index: AboutPane.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/desktop/AboutPane.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** AboutPane.java	14 May 2005 00:08:20 -0000	1.12
--- AboutPane.java	17 May 2005 00:44:31 -0000	1.13
***************
*** 49,53 ****
   * one place.
   *
!  * @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]
--- 49,53 ----
   * one place.
   *
!  * @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: DesktopActions.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/desktop/DesktopActions.java,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** DesktopActions.java	14 May 2005 00:08:20 -0000	1.28
--- DesktopActions.java	17 May 2005 00:44:31 -0000	1.29
***************
*** 54,58 ****
   * Previously each of the "do" methods was a separate class.
   *
!  * @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]
--- 54,58 ----
   * Previously each of the "do" methods was a separate class.
   *
!  * @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: Splash.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/desktop/Splash.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Splash.java	10 May 2005 02:40:11 -0000	1.14
--- Splash.java	17 May 2005 00:44:31 -0000	1.15
***************
*** 56,60 ****
   * </pre>
   *
!  * @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]
--- 56,60 ----
   * </pre>
   *
!  * @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: StatusBar.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/desktop/StatusBar.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** StatusBar.java	10 May 2005 02:40:11 -0000	1.9
--- StatusBar.java	17 May 2005 00:44:31 -0000	1.10
***************
*** 49,53 ****
   * </ul>
   * 
!  * @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]
--- 49,53 ----
   * </ul>
   * 
!  * @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: ViewSourcePane.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/desktop/ViewSourcePane.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** ViewSourcePane.java	14 May 2005 00:08:20 -0000	1.17
--- ViewSourcePane.java	17 May 2005 00:44:31 -0000	1.18
***************
*** 61,65 ****
   * The text to be viewed can be grabbed from a String, a URL, or a file.
   *
!  * @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]
--- 61,65 ----
   * The text to be viewed can be grabbed from a String, a URL, or a file.
   *
!  * @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: Desktop.java
===================================================================
RCS file: /cvs/jsword/bibledesktop/java/main/org/crosswire/bibledesktop/desktop/Desktop.java,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -d -r1.44 -r1.45
*** Desktop.java	10 May 2005 02:40:11 -0000	1.44
--- Desktop.java	17 May 2005 00:44:31 -0000	1.45
***************
*** 103,107 ****
   * want to disable the Exit button if work is going on?</p>
   *
!  * @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]
--- 103,107 ----
   * want to disable the Exit button if work is going on?</p>
   *
!  * @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