From f8cba1de5d0efbc009dffeb645a1abebaf2eaa07 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=BCrgen=20Walter?= <juergen.walter@uni-wuerzburg.de>
Date: Tue, 23 Jan 2018 14:27:31 +0100
Subject: [PATCH] minor style improvement

---
 .../result/AbstractQuantitativeResult.java    | 91 ++++++++++---------
 1 file changed, 46 insertions(+), 45 deletions(-)

diff --git a/tools.descartes.pavo/src/tools/descartes/pavo/result/AbstractQuantitativeResult.java b/tools.descartes.pavo/src/tools/descartes/pavo/result/AbstractQuantitativeResult.java
index ff5c6a63..9b68999f 100644
--- a/tools.descartes.pavo/src/tools/descartes/pavo/result/AbstractQuantitativeResult.java
+++ b/tools.descartes.pavo/src/tools/descartes/pavo/result/AbstractQuantitativeResult.java
@@ -27,6 +27,7 @@
 package tools.descartes.pavo.result;
 
 import tools.descartes.dql.models.mapping.domain.Result;
+
 /**
  * Abstract class for all results of the pavo result type
  * 
@@ -41,35 +42,38 @@ public abstract class AbstractQuantitativeResult {
 	// aggregates value, davon erben mean, max, min usw
 	private String scaleX; // for values
 	private String scaleY;
-	
-	private Result resultLocation=null;
+
+	private Result resultLocation = null;
 	private int DotsShown = 0;
 	String additionalDescription;
-	
-	
+
 	/**
 	 * 
-	 * @param queryableElementN Queryable Element of the old EntityMapping
-	 * @param metricN current Metric
-	 * @param statisticTypeN current StatisticType
-	 * @param scalexNeu String for x axis
-	 * @param scaleyNeu String for y axis
-	 * @param resultLocationNeu location of the original result (needed for online update of the result)
+	 * @param queryableElementN
+	 *            Queryable Element of the old EntityMapping
+	 * @param metric
+	 *            current Metric
+	 * @param statisticTypeN
+	 *            current StatisticType
+	 * @param scaleX
+	 *            String for x axis
+	 * @param scaleY
+	 *            String for y axis
+	 * @param resultLocation
+	 *            location of the original result (needed for online update of the
+	 *            result)
 	 */
-	public AbstractQuantitativeResult(String queryableElementN, String metricN, String description,
-			String statisticTypeN, String scalexNeu, String scaleyNeu, Result resultLocationNeu)
-	{
-		this.queryableElement=queryableElementN;
-		this.metric = metricN;
+	public AbstractQuantitativeResult(String queryableElementN, String metric, String description,
+			String statisticTypeN, String scaleX, String scaleY, Result resultLocation) {
+		this.queryableElement = queryableElementN;
+		this.metric = metric;
 		this.StatisticType = statisticTypeN;
-		this.scaleX = scalexNeu;
-		this.scaleY = scaleyNeu;
-		this.resultLocation = resultLocationNeu;
+		this.scaleX = scaleX;
+		this.scaleY = scaleY;
+		this.resultLocation = resultLocation;
 		this.additionalDescription = description;
 	}
-	
-	
-	
+
 	// /**
 	// * @param queryableElementN Queryable Element of the old EntityMapping
 	// * @param metricN current Metric
@@ -87,12 +91,7 @@ public abstract class AbstractQuantitativeResult {
 	// this.scaleY = scaleyNeu;
 	// this.resultLocation = null;
 	// }
-	
-	
-	
-	
-	
-	
+
 	/**
 	 * @return the dotsShown
 	 */
@@ -101,7 +100,8 @@ public abstract class AbstractQuantitativeResult {
 	}
 
 	/**
-	 * @param dotsShown the dotsShown to set
+	 * @param dotsShown
+	 *            the dotsShown to set
 	 */
 	public void setDotsShown(int dotsShown) {
 		DotsShown = dotsShown;
@@ -114,55 +114,54 @@ public abstract class AbstractQuantitativeResult {
 		return resultLocation;
 	}
 
-
-
-
-
-
 	/**
-	 * @param resultLocation the resultLocation to set
+	 * @param resultLocation
+	 *            the resultLocation to set
 	 */
 	public void setResultLocation(Result resultLocation) {
 		this.resultLocation = resultLocation;
 	}
 
-
-
-
-
-
 	/**
 	 * @return the queryableElement
 	 */
 	public String getQueryableElement() {
 		return queryableElement;
 	}
+
 	/**
-	 * @param queryableElement the queryableElement to set
+	 * @param queryableElement
+	 *            the queryableElement to set
 	 */
 	public void setQueryableElement(String queryableElement) {
 		this.queryableElement = queryableElement;
 	}
+
 	/**
 	 * @return the metric
 	 */
 	public String getMetric() {
 		return metric;
 	}
+
 	/**
-	 * @param metric the metric to set
+	 * @param metric
+	 *            the metric to set
 	 */
 	public void setMetric(String metric) {
 		this.metric = metric;
 	}
+
 	/**
 	 * @return the statisticType
 	 */
 	public String getStatisticType() {
 		return StatisticType;
 	}
+
 	/**
-	 * @param statisticType the statisticType to set
+	 * @param statisticType
+	 *            the statisticType to set
 	 */
 	public void setStatisticType(String statisticType) {
 		StatisticType = statisticType;
@@ -176,7 +175,8 @@ public abstract class AbstractQuantitativeResult {
 	}
 
 	/**
-	 * @param scaleX the scaleX to set
+	 * @param scaleX
+	 *            the scaleX to set
 	 */
 	public void setScaleX(String scaleX) {
 		this.scaleX = scaleX;
@@ -190,10 +190,11 @@ public abstract class AbstractQuantitativeResult {
 	}
 
 	/**
-	 * @param scaleY the scaleY to set
+	 * @param scaleY
+	 *            the scaleY to set
 	 */
 	public void setScaleY(String scaleY) {
 		this.scaleY = scaleY;
 	}
-	
+
 }
-- 
GitLab