/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ /** * * @author Kabir Khan * @version $Revision: 1.1 $ */ public abstract class VehicleDAO { String registration; int wheels; protected VehicleDAO(String reg, int wheels) { this.registration = reg; this.wheels = wheels; } public void save() { //Subclasses should implement } }