You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2017/11/25 17:11:18 UTC

svn commit: r1816329 - /jmeter/trunk/src/core/org/apache/jmeter/report/processor/ListResultData.java

Author: fschumacher
Date: Sat Nov 25 17:11:17 2017
New Revision: 1816329

URL: http://svn.apache.org/viewvc?rev=1816329&view=rev
Log:
Javadoc clean up. Part of #332 Contributed by Graham Russell

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/report/processor/ListResultData.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/report/processor/ListResultData.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/report/processor/ListResultData.java?rev=1816329&r1=1816328&r2=1816329&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/report/processor/ListResultData.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/report/processor/ListResultData.java Sat Nov 25 17:11:17 2017
@@ -23,17 +23,16 @@ import java.util.List;
 
 /**
  * The class ListResultData provides a list of results from sample processing.
- * 
+ *
  * @since 3.0
  */
 public class ListResultData implements ResultData, Iterable<ResultData> {
 
-    /** The items. */
     private List<ResultData> items = new ArrayList<>();
 
     /*
      * (non-Javadoc)
-     * 
+     *
      * @see
      * org.apache.jmeter.report.processor.ResultData#accept(org.apache.jmeter
      * .report.processor.ResultDataVisitor)
@@ -46,8 +45,7 @@ public class ListResultData implements R
     /**
      * Adds the result at the end of the list.
      *
-     * @param result
-     *            the result
+     * @param result the result
      * @return true, if the result is added
      */
     public boolean addResult(ResultData result) {
@@ -57,8 +55,7 @@ public class ListResultData implements R
     /**
      * Removes the result at the specified index.
      *
-     * @param index
-     *            the index of the result in the list
+     * @param index the index of the result in the list
      * @return the removed result data
      */
     public ResultData removeResult(int index) {
@@ -68,8 +65,7 @@ public class ListResultData implements R
     /**
      * Gets the stored item at the specified index.
      *
-     * @param index
-     *            the index
+     * @param index the index
      * @return the result data
      */
     public ResultData get(int index) {
@@ -87,7 +83,7 @@ public class ListResultData implements R
 
     /*
      * (non-Javadoc)
-     * 
+     *
      * @see java.lang.Iterable#iterator()
      */
     @Override