Author: fschumacher
Date: Tue Dec 22 11:12:32 2015
New Revision: 1721349
URL: http://svn.apache.org/viewvc?rev=1721349&view=rev
Log:
Document the need for non null arguments in javadoc. Followup to r1721348.
Modified:
jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/DataExporter.java
Modified: jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/DataExporter.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/DataExporter.java?rev=1721349&r1=1721348&r2=1721349&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/DataExporter.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/DataExporter.java Tue Dec 22
11:12:32 2015
@@ -49,11 +49,11 @@ public interface DataExporter {
* Export data from the specified context using the given configuration.
*
* @param context
- * the context
+ * the context (must not be {@code null})
* @param file
- * the file which from samples come
+ * the file which from samples come (must not be {@code null})
* @param configuration
- * the configuration
+ * the configuration (must not be {@code null})
* @throws ExportException
* the export exception
*/
|