[Mulgara-svn] r1644 - trunk/src/jar/resolver-lucene/java/org/mulgara/resolver/lucene

pag at mulgara.org pag at mulgara.org
Thu Mar 26 20:14:31 UTC 2009


Author: pag
Date: 2009-03-26 13:14:29 -0700 (Thu, 26 Mar 2009)
New Revision: 1644

Modified:
   trunk/src/jar/resolver-lucene/java/org/mulgara/resolver/lucene/LuceneResolver.java
Log:
Fixed javadoc, and a little formatting cleanup

Modified: trunk/src/jar/resolver-lucene/java/org/mulgara/resolver/lucene/LuceneResolver.java
===================================================================
--- trunk/src/jar/resolver-lucene/java/org/mulgara/resolver/lucene/LuceneResolver.java	2009-03-26 20:12:09 UTC (rev 1643)
+++ trunk/src/jar/resolver-lucene/java/org/mulgara/resolver/lucene/LuceneResolver.java	2009-03-26 20:14:29 UTC (rev 1644)
@@ -79,20 +79,10 @@
  * @created 2004-04-01
  *
  * @author <a href="http://staff.pisoftware.com/raboczi">Simon Raboczi</a>
- *
- * @version $Revision: 1.9 $
- *
- * @modified $Date: 2005/02/22 08:16:13 $ by $Author: newmana $
- *
- * @maintenanceAuthor $Author: newmana $
- *
- * @company <A href="mailto:info at PIsoftware.com">Plugged In Software</A>
- *
- * @copyright &copy; 2003 <A href="http://www.PIsoftware.com/">Plugged In
- *      Software Pty Ltd</A>
- *
+ * @copyright &copy; 2003 <A href="http://www.PIsoftware.com/">Plugged In Software Pty Ltd</A>
  * @licence <a href="{@docRoot}/../../LICENCE">Mozilla Public License v1.1</a>
  */
+ at SuppressWarnings("unused")
 public class LuceneResolver implements Resolver {
   /** Logger.  */
   private static final Logger logger = Logger.getLogger(LuceneResolver.class);
@@ -141,16 +131,15 @@
   //
 
   /**
-   * Create a model by treating the <var>model</var> as the {@link URL} of an
+   * Create a model by treating the <var>model</var> as the {@link java.net.URL} of an
    * RDF document and downloading it into the database.
    *
-   * @param model  {@inheritDoc}.  In this case, it should be the {@link URL} of
+   * @param model  {@inheritDoc}.  In this case, it should be the {@link java.net.URL} of
    *   an RDF/XML document.
    * @param modelTypeURI  {@inheritDoc}.  This field is ignored, because URL
    *   models are external.
    */
-  public void createModel(long model, URI modelTypeURI)
-      throws ResolverException, LocalizeException {
+  public void createModel(long model, URI modelTypeURI) throws ResolverException, LocalizeException {
     if (logger.isDebugEnabled()) {
       logger.debug("Create Lucene model " + model);
     }
@@ -163,8 +152,7 @@
   /**
    * Insert or delete RDF statements in a model at a URL.
    */
-  public void modifyModel(long model, Statements statements, boolean occurs)
-      throws ResolverException {
+  public void modifyModel(long model, Statements statements, boolean occurs) throws ResolverException {
     if (logger.isDebugEnabled()) {
       logger.debug("Modify URL model " + model);
     }




More information about the Mulgara-svn mailing list