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

kg.apc.charting.AbstractGraphPanelChartElement Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package kg.apc.charting;

import java.io.Serializable;

public abstract class AbstractGraphPanelChartElement implements Serializable {

    public abstract double getValue();

    public abstract void add(double val);

    public boolean isPointRepresentative(int limit) {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy