Author: desruisseaux
Date: Mon Jun 17 13:55:06 2013
New Revision: 1493760
URL: http://svn.apache.org/r1493760
Log:
New method that needs to be implemented since the upgrate of UCAR library 4.3.16 to 4.3.17.
Modified:
sis/branches/JDK7/ide-project/NetBeans/nbproject/project.properties
sis/branches/JDK7/storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf/ucar/DecoderWrapper.java
Modified: sis/branches/JDK7/ide-project/NetBeans/nbproject/project.properties
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/ide-project/NetBeans/nbproject/project.properties?rev=1493760&r1=1493759&r2=1493760&view=diff
==============================================================================
--- sis/branches/JDK7/ide-project/NetBeans/nbproject/project.properties [ISO-8859-1] (original)
+++ sis/branches/JDK7/ide-project/NetBeans/nbproject/project.properties [ISO-8859-1] Mon Jun
17 13:55:06 2013
@@ -55,7 +55,7 @@ rome.version = 0.9
jdom.version = 1.0
jee.version = 6.0
osgi.version = 5.0.0
-netcdf.version = 4.3.16
+netcdf.version = 4.3.17
joda-time.version = 2.0
httpclient.version = 3.1
slf4j.version = 1.6.4
Modified: sis/branches/JDK7/storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf/ucar/DecoderWrapper.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf/ucar/DecoderWrapper.java?rev=1493760&r1=1493759&r2=1493760&view=diff
==============================================================================
--- sis/branches/JDK7/storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf/ucar/DecoderWrapper.java
[UTF-8] (original)
+++ sis/branches/JDK7/storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf/ucar/DecoderWrapper.java
[UTF-8] Mon Jun 17 13:55:06 2013
@@ -336,6 +336,16 @@ public final class DecoderWrapper extend
}
/**
+ * Invoked by the UCAR library during the reading process for progress information.
+ *
+ * @param message The message to show to the user.
+ * @param progress Count of progress, or -1 if unknown. This is not necessarily a percentage
done.
+ */
+ @Override
+ public void setProgress(final String message, final int progress) {
+ }
+
+ /**
* Invoked by the UCAR NetCDF library when an error occurred.
*
* @param message The error message.
|