Package br.furb.compiladores.compilador.dao

Examples of br.furb.compiladores.compilador.dao.ProgramaFileDAO


    /**
     * @param statusListener
     */
    public ApplicationController(IStatusListener statusListener) {
        this.statusListener = statusListener;
        programaDAO = new ProgramaFileDAO();
        novo();
    }
View Full Code Here


   */
  public ApplicationController(StatusListener statusListener,
      ResultListener resultListener) {
    this.statusListener = statusListener;
    this.resultListener = resultListener;
    programaDAO = new ProgramaFileDAO();
    novo();
  }
View Full Code Here

TOP

Related Classes of br.furb.compiladores.compilador.dao.ProgramaFileDAO

Copyright © 2018 www.massapicom. 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.