Package net.sourceforge.wampum.gui

Source Code of net.sourceforge.wampum.gui.Controller

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();
  }

}
TOP

Related Classes of net.sourceforge.wampum.gui.Controller

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.