Programming Resources
For Fun and Learning
Charles Cusack
Computer Science
Hope College
main

Python
C++

JAVA


PHP
SQL
Assignments

MVC_Ferzle


MVC_Ferzle.java

/**
 * @author Charles Cusack
 * @version 1.0, September, 2006
 * 
 */
import javax.swing.*;

public class MVC_Ferzle extends JApplet {
    
    public void init() {
    	// Instantiate the model, view, and controller.
        FerzleModel model=new FerzleModel();
        FerzleView view=new FerzleView(model);
        new FerzleController(model,view);   
        
        // We only need to add the view to the applet.
        this.add(view);     
    }
    
}