| BMICalculator.java |
package lectures.interfaces;
import util.annotations.WebDocuments;
@WebDocuments({"Lectures/Interfaces.pptx", "Lectures/Interfaces.pdf", "Videos/Interfaces.avi"})
public interface BMICalculator {
public double calculateBMI(double aHeight, double aWeight);
}