![JAR search and dependency download from the Maven repository](/logo.png)
com.kryshchuk.maven.plugins.jfreechart.LineChartSerie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfreechart-maven-plugin Show documentation
Show all versions of jfreechart-maven-plugin Show documentation
This plugin integrates chart generation into the build process.
/*
* JFreeChart Maven Plugin
* Copyright (C) 2013 Yuriy Kryshchuk
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.kryshchuk.maven.plugins.jfreechart;
import java.awt.Color;
import java.lang.reflect.Field;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Parameter;
import org.jfree.data.xy.XYSeries;
/**
* LineChartSerie class.
*
* @author yura
*/
public class LineChartSerie extends LabeledValues {
private final XYSeries serie = new XYSeries("");
@Parameter(required = false)
private String color;
private Color lineColor;
private final Class colorClass = Color.class;
@Override
public void setLabel(final String label) {
super.setLabel(label);
serie.setKey(label);
}
/**
* @param color
* the color to set
* @throws MojoExecutionException
*/
public void setColor(final String color) throws MojoExecutionException {
this.color = color;
try {
final Field colorField = colorClass.getField(color);
lineColor = (Color) colorField.get(null);
} catch (final NoSuchFieldException e) {
try {
lineColor = Color.decode(color);
} catch (final NumberFormatException e2) {
throw new MojoExecutionException("Invalid color", e2);
}
} catch (final IllegalAccessException e) {
throw new MojoExecutionException("Cannot convert color", e);
}
}
/**
* @return the serie
*/
public XYSeries getSerie() {
return serie;
}
/**
* @return the lineColor
*/
public Color getLineColor() {
return lineColor;
}
/**
*
*/
public void clear() {
getSerie().clear();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy