All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.primefaces.extensions.component.gchart.model.GChartModelRow Maven / Gradle / Ivy

There is a newer version: 15.0.0-RC1
Show newest version
package org.primefaces.extensions.component.gchart.model;

import java.util.Collection;

public interface GChartModelRow {
	public abstract Collection getValues();
	public abstract String getLabel();
}