org.primefaces.extensions.component.gchart.model.GChartModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of primefaces-extensions Show documentation
Show all versions of primefaces-extensions Show documentation
PrimeFaces Extensions Project for Maven.
package org.primefaces.extensions.component.gchart.model;
import java.io.Serializable;
import java.util.Collection;
import java.util.Map;
public interface GChartModel extends Serializable{
public abstract Collection getRows();
public abstract Collection getColumns();
public abstract Map getOptions();
public abstract GChartType getChartType();
public abstract String toJson();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy