12345678910111213
package net.sourceforge.wampum.gui; import net.sourceforge.wampum.system.data.DAOFactory; public abstract class Controller { protected DAOFactory daoFactory = null; public Controller() { daoFactory = new DAOFactory(); } }