jadex.webservice.examples.rs.chart.IChartService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jadex-applications-webservice Show documentation
Show all versions of jadex-applications-webservice Show documentation
The Jadex web service applications package contains several example applications, benchmarks and testcases using web service integration.
package jadex.webservice.examples.rs.chart;
import java.awt.Color;
import jadex.bridge.service.annotation.Reference;
import jadex.commons.future.IFuture;
/**
* Interface for
*/
public interface IChartService
{
/**
* Get a bar chart.
*/
public @Reference(local=true) IFuture getBarChart(int width, int height,
double[][] data, String[] labels, @Reference(local=true) Color[] colors);
/**
* Get a line chart.
*/
public @Reference(local=true) IFuture getLineChart(int width, int height,
double[][] data, String[] labels, @Reference(local=true) Color[] colors);
/**
* Get a pie chart.
*/
public @Reference(local=true) IFuture getPieChart(int width, int height,
double[][] data, String[] labels, @Reference(local=true) Color[] colors);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy