[jsword-svn] jsword/java/jsword/org/crosswire/jsword/book/install s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Mon May 16 17:43:17 MST 2005
Update of /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install
In directory www.crosswire.org:/tmp/cvs-serv23836/java/jsword/org/crosswire/jsword/book/install
Modified Files:
InstallException.java Installer.java Msg.java
InstallerFactory.java InstallerListener.java
InstallerEvent.java InstallManager.java
Log Message:
Added support for CheckStyle plugin.
Added a few more CheckStyle rules.
Fixed a spelling mistake.
Index: InstallerListener.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install/InstallerListener.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** InstallerListener.java 10 May 2005 02:39:21 -0000 1.3
--- InstallerListener.java 17 May 2005 00:43:15 -0000 1.4
***************
*** 28,32 ****
* of Installers known to the system.
*
! * @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 ----
* of Installers known to the system.
*
! * @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]
***************
*** 38,42 ****
* @param ev A description of the change
*/
! public void installerAdded(InstallerEvent ev);
/**
--- 38,42 ----
* @param ev A description of the change
*/
! void installerAdded(InstallerEvent ev);
/**
***************
*** 44,47 ****
* @param ev A description of the change
*/
! public void installerRemoved(InstallerEvent ev);
}
--- 44,47 ----
* @param ev A description of the change
*/
! void installerRemoved(InstallerEvent ev);
}
Index: Installer.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install/Installer.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** Installer.java 10 May 2005 02:39:21 -0000 1.12
--- Installer.java 17 May 2005 00:43:15 -0000 1.13
***************
*** 37,41 ****
* e-Sword, OLB, etc.</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]
--- 37,41 ----
* e-Sword, OLB, etc.</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]
***************
*** 47,51 ****
* @return the source url
*/
! public String getURL();
/**
--- 47,51 ----
* @return the source url
*/
! String getURL();
/**
***************
*** 53,57 ****
* @return the remote url for the BookMetaData
*/
! public URL toRemoteURL(Book book);
/**
--- 53,57 ----
* @return the remote url for the BookMetaData
*/
! URL toRemoteURL(Book book);
/**
***************
*** 62,66 ****
* @see Installer#reloadBookList()
*/
! public List getBooks();
/**
--- 62,66 ----
* @see Installer#reloadBookList()
*/
! List getBooks();
/**
***************
*** 70,74 ****
* @return whether there is a newer version to install
*/
! public boolean isNewer(Book book);
/**
--- 70,74 ----
* @return whether there is a newer version to install
*/
! boolean isNewer(Book book);
/**
***************
*** 78,82 ****
* Christians then this action might give the game away.</b>
*/
! public void reloadBookList() throws InstallException;
/**
--- 78,82 ----
* Christians then this action might give the game away.</b>
*/
! void reloadBookList() throws InstallException;
/**
***************
*** 86,90 ****
* @param book The module to install
*/
! public void install(Book book) throws InstallException;
/**
--- 86,90 ----
* @param book The module to install
*/
! void install(Book book) throws InstallException;
/**
***************
*** 96,99 ****
* IndexManager for installation.
*/
! public void downloadSearchIndex(Book book, URL tempDest) throws InstallException;
}
--- 96,99 ----
* IndexManager for installation.
*/
! void downloadSearchIndex(Book book, URL tempDest) throws InstallException;
}
Index: InstallerEvent.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install/InstallerEvent.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** InstallerEvent.java 10 May 2005 02:39:21 -0000 1.6
--- InstallerEvent.java 17 May 2005 00:43:15 -0000 1.7
***************
*** 28,32 ****
* system.
*
! * @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 ----
* system.
*
! * @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: InstallManager.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install/InstallManager.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** InstallManager.java 10 May 2005 02:39:21 -0000 1.17
--- InstallManager.java 17 May 2005 00:43:15 -0000 1.18
***************
*** 43,47 ****
* A manager to abstract out the non-view specific module installation tasks.
*
! * @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]
--- 43,47 ----
* A manager to abstract out the non-view specific module installation tasks.
*
! * @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: Msg.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install/Msg.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Msg.java 10 May 2005 02:39:21 -0000 1.6
--- Msg.java 17 May 2005 00:43:15 -0000 1.7
***************
*** 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 UNUSED = new Msg("UNUSED"); //$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 UNUSED = new Msg("UNUSED"); //$NON-NLS-1$
Index: InstallerFactory.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install/InstallerFactory.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** InstallerFactory.java 10 May 2005 02:39:21 -0000 1.3
--- InstallerFactory.java 17 May 2005 00:43:15 -0000 1.4
***************
*** 25,29 ****
* An abstract factory to allow generic creation of Installers.
*
! * @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]
--- 25,29 ----
* An abstract factory to allow generic creation of Installers.
*
! * @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]
***************
*** 36,40 ****
* @return A new Installer implemented to fit with this Factory
*/
! public Installer createInstaller();
/**
--- 36,40 ----
* @return A new Installer implemented to fit with this Factory
*/
! Installer createInstaller();
/**
***************
*** 44,47 ****
* @return A new Installer implemented to fit with this Factory
*/
! public Installer createInstaller(String url);
}
--- 44,47 ----
* @return A new Installer implemented to fit with this Factory
*/
! Installer createInstaller(String url);
}
Index: InstallException.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install/InstallException.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** InstallException.java 10 May 2005 02:39:21 -0000 1.7
--- InstallException.java 17 May 2005 00:43:15 -0000 1.8
***************
*** 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]
More information about the jsword-svn
mailing list