[jsword-svn] jsword/java/jsword/org/crosswire/jsword/book/install s
jswordcvs at crosswire.org
jswordcvs at crosswire.org
Fri Oct 15 16:28:10 MST 2004
Update of /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install
In directory www.crosswire.org:/tmp/cvs-serv30320/java/jsword/org/crosswire/jsword/book/install
Modified Files:
Installer.java
Log Message:
progress on downloading index
Index: Installer.java
===================================================================
RCS file: /cvs/jsword/jsword/java/jsword/org/crosswire/jsword/book/install/Installer.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Installer.java 10 Oct 2004 22:12:02 -0000 1.7
--- Installer.java 15 Oct 2004 23:28:07 -0000 1.8
***************
*** 46,49 ****
--- 46,61 ----
/**
+ * @param bmd The book meta-data to get a URL from.
+ * @return the remote url for the BookMetaData
+ */
+ public URL toRemoteURL(BookMetaData bmd);
+
+ /**
+ * @param bmd The book meta-data to get a URL from.
+ * @return the url for the directory for BookMetaData
+ */
+ public URL toLocalURL(BookMetaData bmd);
+
+ /**
* Get a list of BookMetaData objects that represent downloadable modules.
* If no list has been retrieved from the remote source using reloadIndex()
***************
*** 55,58 ****
--- 67,78 ----
/**
+ * Return true if the module is not installed or there is a newer
+ * version to install.
+ * @param bmd The book meta-data to check on.
+ * @return whether there is a newer version to install
+ */
+ public boolean isNewer(BookMetaData bmd);
+
+ /**
* Refetch a list of names from the remote source.
* <b>It would make sense if the user was warned about the implications
***************
*** 79,101 ****
*/
public void downloadSearchIndex(BookMetaData bmd, URL tempDest) throws InstallException;
-
- /**
- * @param bmd The book meta-data to get a URL from.
- * @return the remote url for the BookMetaData
- */
- public URL toRemoteURL(BookMetaData bmd);
-
- /**
- * @param bmd The book meta-data to get a URL from.
- * @return the url for the directory for BookMetaData
- */
- public URL toLocalURL(BookMetaData bmd);
-
- /**
- * Return true if the module is not installed or there is a newer
- * version to install.
- * @param bmd The book meta-data to check on.
- * @return whether there is a newer version to install
- */
- public boolean isNewer(BookMetaData bmd);
}
--- 99,101 ----
More information about the jsword-svn
mailing list