Skip to content
Snippets Groups Projects
Commit 0ce4e99c authored by Tim Molter's avatar Tim Molter
Browse files

fixed Maven build warnings

parent 5ecbde90
Branches
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
</ciManagement> </ciManagement>
<dependencies> <dependencies>
<!-- only needed if using XCharts as part of a webapp --> <!-- only needed if using XCharts as part of a webapp -->
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId> <artifactId>javax.servlet-api</artifactId>
...@@ -144,4 +144,9 @@ ...@@ -144,4 +144,9 @@
</profile> </profile>
</profiles> </profiles>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
</project> </project>
...@@ -126,7 +126,7 @@ public class Chart { ...@@ -126,7 +126,7 @@ public class Chart {
* @param seriesName * @param seriesName
* @param xData Collection<Number> * @param xData Collection<Number>
* @param yData Collection<Number> * @param yData Collection<Number>
* @return * @return A Series object that you can set properties on
*/ */
public Series addSeries(String seriesName, Collection<Number> xData, Collection<Number> yData) { public Series addSeries(String seriesName, Collection<Number> xData, Collection<Number> yData) {
...@@ -144,7 +144,7 @@ public class Chart { ...@@ -144,7 +144,7 @@ public class Chart {
* @param seriesName * @param seriesName
* @param xData double[] * @param xData double[]
* @param yData double[] * @param yData double[]
* @return * @return A Series object that you can set properties on
*/ */
public Series addSeries(String seriesName, double[] xData, double[] yData) { public Series addSeries(String seriesName, double[] xData, double[] yData) {
...@@ -158,7 +158,7 @@ public class Chart { ...@@ -158,7 +158,7 @@ public class Chart {
* @param xData * @param xData
* @param yData * @param yData
* @param errorBars * @param errorBars
* @return * @return A Series object that you can set properties on
*/ */
public Series addSeries(String seriesName, double[] xData, double[] yData, double[] errorBars) { public Series addSeries(String seriesName, double[] xData, double[] yData, double[] errorBars) {
......
...@@ -45,7 +45,7 @@ public enum ChartColor { ...@@ -45,7 +45,7 @@ public enum ChartColor {
* Get a AWT Color Object * Get a AWT Color Object
* *
* @param chartColor * @param chartColor
* @return * @return a AWT Color Object
*/ */
public static Color getAWTColor(ChartColor chartColor) { public static Color getAWTColor(ChartColor chartColor) {
......
...@@ -81,7 +81,7 @@ public enum SeriesLineStyle { ...@@ -81,7 +81,7 @@ public enum SeriesLineStyle {
* Get an AWT Stroke * Get an AWT Stroke
* *
* @param seriesMarker * @param seriesMarker
* @return * @return an AWT Stroke
*/ */
protected static BasicStroke getBasicStroke(SeriesLineStyle seriesMarker) { protected static BasicStroke getBasicStroke(SeriesLineStyle seriesMarker) {
...@@ -89,9 +89,9 @@ public enum SeriesLineStyle { ...@@ -89,9 +89,9 @@ public enum SeriesLineStyle {
} }
/** /**
* Gets the next Stroke * Gets the next BasicStroke
* *
* @return * @return the next BasicStroke
*/ */
protected static BasicStroke getNextBasicStroke() { protected static BasicStroke getNextBasicStroke() {
......
...@@ -25,7 +25,6 @@ import javax.swing.JPanel; ...@@ -25,7 +25,6 @@ import javax.swing.JPanel;
* A Swing JPanel that contains a Chart * A Swing JPanel that contains a Chart
* *
* @author timmolter * @author timmolter
* @create Sep 9, 2012
*/ */
public class XChartPanel extends JPanel { public class XChartPanel extends JPanel {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment