Author: fschumacher
Date: Sat Nov 25 17:16:03 2017
New Revision: 1816332
URL: http://svn.apache.org/viewvc?rev=1816332&view=rev
Log:
Get rid of useless javadoc. Part of #332 contributed by Graham Russell
Modified:
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexSummaryData.java
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexThresholdsInfo.java
Modified:
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexSummaryData.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexSummaryData.java?rev=1816332&r1=1816331&r2=1816332&view=diff
==============================================================================
---
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexSummaryData.java
(original)
+++
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexSummaryData.java
Sat Nov 25 17:16:03 2017
@@ -23,6 +23,7 @@ package org.apache.jmeter.report.process
* @since 3.0
*/
public class ApdexSummaryData {
+
private final ApdexThresholdsInfo apdexThresholdInfo;
private long satisfiedCount;
@@ -33,55 +34,26 @@ public class ApdexSummaryData {
return apdexThresholdInfo;
}
- /**
- * Gets the satisfied count.
- *
- * @return the satisfiedCount
- */
public final long getSatisfiedCount() {
return satisfiedCount;
}
- /**
- * Sets the satisfied count.
- *
- * @param satisfiedCount
- * the satisfiedCount to set
- */
public final void setSatisfiedCount(long satisfiedCount) {
this.satisfiedCount = satisfiedCount;
}
- /**
- * @return the toleratedCount
- */
public final long getToleratedCount() {
return toleratedCount;
}
- /**
- * Sets the tolerated count.
- *
- * @param toleratedCount
- * the toleratedCount to set
- */
public final void setToleratedCount(long toleratedCount) {
this.toleratedCount = toleratedCount;
}
- /**
- * Gets the total count.
- *
- * @return the totalCount
- */
public final long getTotalCount() {
return totalCount;
}
- /**
- * @param totalCount
- * the totalCount to set
- */
public final void setTotalCount(long totalCount) {
this.totalCount = totalCount;
}
@@ -89,8 +61,7 @@ public class ApdexSummaryData {
/**
* Instantiates a new apdex summary data.
*
- * @param info
- * the threshold information
+ * @param info the threshold information
*/
public ApdexSummaryData(ApdexThresholdsInfo info) {
apdexThresholdInfo = info;
Modified:
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexThresholdsInfo.java
URL:
http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexThresholdsInfo.java?rev=1816332&r1=1816331&r2=1816332&view=diff
==============================================================================
---
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexThresholdsInfo.java
(original)
+++
jmeter/trunk/src/core/org/apache/jmeter/report/processor/ApdexThresholdsInfo.java
Sat Nov 25 17:16:03 2017
@@ -24,43 +24,22 @@ package org.apache.jmeter.report.process
* @since 3.0
*/
public class ApdexThresholdsInfo {
+
private long satisfiedThreshold;
private long toleratedThreshold;
- /**
- * Gets the satisfied users threshold (T).
- *
- * @return the satisfied threshold
- */
public final long getSatisfiedThreshold() {
return satisfiedThreshold;
}
- /**
- * Sets the satisfied users threshold (T).
- *
- * @param satisfiedThreshold
- * the satisfied threshold to set
- */
public final void setSatisfiedThreshold(long satisfiedThreshold) {
this.satisfiedThreshold = satisfiedThreshold;
}
- /**
- * Gets the tolerated threshold (F).
- *
- * @return the tolerated threshold
- */
public final long getToleratedThreshold() {
return toleratedThreshold;
}
- /**
- * Sets the tolerated threshold (F).
- *
- * @param toleratedThreshold
- * the tolerated threshold to set
- */
public final void setToleratedThreshold(long toleratedThreshold) {
this.toleratedThreshold = toleratedThreshold;
}