/** * An abstract example of an abstract class * This truly does nothing * @author gtowell * Created: Oct 26, 2021 */ public abstract class AbCl { // kilometers? Why ... why not private double km; public double getKM () { return km; } public double getMiles() { return km * 1.62; } /** * A really long comment so that implementers know exactly what to do * @param aaa * @param bbb */ public abstract void populate(int aaa, int bbb); }