1 2 3 4 5 6 7
package function; public abstract class Function { public abstract double getY(double x); }