From: <tho...@us...> - 2014-01-06 21:12:25
|
Revision: 7740 http://bigdata.svn.sourceforge.net/bigdata/?rev=7740&view=rev Author: thompsonbry Date: 2014-01-06 21:12:19 +0000 (Mon, 06 Jan 2014) Log Message: ----------- javadoc, @Override Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-rdf/src/java/com/bigdata/rdf/store/DataLoader.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-rdf/src/java/com/bigdata/rdf/store/DataLoader.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-rdf/src/java/com/bigdata/rdf/store/DataLoader.java 2014-01-06 19:10:46 UTC (rev 7739) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-rdf/src/java/com/bigdata/rdf/store/DataLoader.java 2014-01-06 21:12:19 UTC (rev 7740) @@ -654,8 +654,11 @@ * Load from an input stream. * * @param is + * The input stream (required). * @param baseURL + * The base URL (required). * @param rdfFormat + * The format (required). * @return * @throws IOException */ @@ -671,11 +674,16 @@ } /** - * Load from a {@link URL}. + * Load from a {@link URL}. If in quads mode, the triples in the default + * graph will be inserted into the named graph associate with the specified + * <code>url</code>. * * @param url + * The URL (required). * @param baseURL + * The base URL (required). * @param rdfFormat + * The {@link RDFFormat} (required). * @return * @throws IOException */ @@ -898,7 +906,7 @@ if (fmt == null) // fallback fmt = rdfFormat; - + InputStream is = null; try { @@ -1007,7 +1015,8 @@ // loader.setFlush(false); // add listener to log progress. loader.addRioLoaderListener( new RioLoaderListener() { - + + @Override public void processingNotification( final RioLoaderEvent e ) { /* * This reports as statements are parsed. Depending on how @@ -1628,5 +1637,5 @@ ServiceProviderHook.forceLoad(); } - + } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |