6-Jan-16 Model-View-Controller. 2 Design Patterns The hard problem in O-O programming is deciding what objects to have, and what their responsibilities.

Slides:



Advertisements
Similar presentations
GUI Tutorial Day 3. Custom Dialog Create, display, hide, retrieve information.
Advertisements

Event-Driven Programming Thus far, our programs have been executed one statement after the other However, many programs depend on user actions to dictate.
13-Jun-15 Animation. 2 Moving pictures Animation—making objects that appear to move on the screen—is done by displaying a series of still pictures, one.
Java Swing Toolkit Graphics The key to effectively using graphics in Java is understanding: –the basic components of the graphics library –the patterns.
13-Jun-15 Model-View-Controller. 2 Design Patterns The hard problem in O-O programming is deciding what objects to have, and what their responsibilities.
Event-Driven Programming Thus far, our programs have been executed one statement after the other However, many programs depend on user actions to dictate.
24-Jun-15 Simple Animation. 2 The bouncing ball The “bouncing ball” is to animation what “Hello world” is to programming With a single Thread, we can.
Graphical User Interface (GUI) Nelson Padua-Perez Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
Model-View-Controller. Design Patterns The hard problem in O-O programming is deciding what objects to have, and what their responsibilities are Design.
Creating a GUI with Swing. Introduction Very useful link: Swing – is a part of JFC (Java Foundation.
Object Oriented Programming Java 1 GUI example taken from “Computing Concepts with Java 2” by Cay Horstmann GUI Programming.
29-Jun-15 Model-View-Controller. 2 Design Patterns The hard problem in O-O programming is deciding what objects to have, and what their responsibilities.
MVC Fall 2005 OOPD John Anthony. Design Patterns The hard problem in O-O programming is deciding what objects to have, and what their responsibilities.
Object-Oriented Analysis and Design
14-Jul-15 Model-View-Controller. 2 Design Patterns The hard problem in O-O programming is deciding what objects to have, and what their responsibilities.
Threads II. Review A thread is a single flow of control through a program Java is multithreaded—several threads may be executing “simultaneously” If you.
Lesson 35: Review of the Java GUI. The JFrame, Container and JButton.
Design Patterns and Graphical User Interfaces Horstmann ,
1 Event Driven Programming wirh Graphical User Interfaces (GUIs) A Crash Course © Rick Mercer.
CS12420 – Swing and threads Lynda Thomas
1 Event Driven Programs Rick Mercer. 2 So what happens next?  You can layout a real pretty GUI  You can click on buttons, enter text into a text field,
Java GUI building with Swing. 2 AWT (Abstract Window Toolkit) Present in all Java implementations Described in (almost) every Java textbook Adequate for.
Software Design 4.1 Tell, Don't Ask l Tell objects what you want them to do, do not ask questions about state, make a decision, then tell them what to.
(c) University of Washington08-1 CSC 143 Models and Views Reading: Ch. 18.
Chapter 19 Designing the GUI front-end: the Model-View-Controller pattern.
The Model-View Approach in Teaching Java Maria Litvin Phillips Academy, Andover, MA
Java Event Handling CSIS 3701: Advanced Object Oriented Programming.
Graphic User Interface. Graphic User Interface (GUI) Most of us interact with computers using GUIs. GUIs are visual representations of the actions you.
GUIs for Video Games. The Plan ● Layout suggestions ● Observer/Observable ● Steps to writing Observer/Observables ● Sample Code ● Practice.
Swing GUI Components You can create graphics components to place on your applet using classes available in the Swing package ( javax.swing ) Class names.
 2003 Joel C. Adams. All Rights Reserved. Calvin CollegeDept of Computer Science(1/15) MVC and Swing Joel Adams and Jeremy Frens Calvin College.
An Introduction to Programming and Object Oriented Design using Java 3 rd Edition. Dec 2007 Jaime Niño Frederick Hosch Chapter 18 Integrating user interface.
MT311 Java Application Development and Programming Languages Li Tak Sing ( 李德成 )
1 Java Model-View-Controller - see programming.html#concepts.
Java GUI. Graphical User Interface (GUI) a list a button a text field a label combo box checkbox.
CSE 331 Software Design & Implementation Hal Perkins Autumn 2012 Event-Driven Programming 1.
Model-View-Controller design pattern. Design Patterns “Making abstractions which are powerful and deep is an art. It requires tremendous ability to go.
7-Dec-15 Animation. HW 10 Last HW (I messed up some of the scheduling) Extension until Monday night 11:30 pm Late penalty will be strictly enforced for.
Design Pattern. Definition: A design pattern is a general reusable solution to a commonly occurring problem within a given context in software design.
Java Model-View-Controller. Design Patterns The hard problem in O-O programming is deciding what objects to have, and what their responsibilities are.
(1) Introduction to Java GUIs Philip Johnson Collaborative Software Development Laboratory Information and Computer Sciences University of Hawaii Honolulu.
CS 415 N-Tier Application Development By Umair Ashraf June 25,2013 National University of Computer and Emerging Sciences Lecture # 4 Web Presentation Patterns.
Computer Science 209 GUIs Model/View/Controller Layouts.
1 CSE 331 Model/View Separation and Observer Pattern slides created by Marty Stepp based on materials by M. Ernst, S. Reges, D. Notkin, R. Mercer, Wikipedia.
Model-View-Controller Architecture. 2 Give someone a program, you frustrate them for a day; teach them how to program, you frustrate them for a lifetime.
Sadegh Aliakbary Sharif University of Technology Fall 2011.
Creating a GUI Class An example of class design using inheritance and interfaces.
Swing GUI Components So far, we have written GUI applications which can ‘ draw ’. These applications are simple, yet typical of all Java GUI applications.
Graphical User Interface (GUI)
MIT AITI 2004 Swing Event Model Lecture 17. The Java Event Model In the last lecture, we learned how to construct a GUI to present information to the.
5-1 GUIs and Events Rick Mercer. 5-2 Event-Driven Programming with Graphical user Interfaces  Most applications have graphical user interfaces to respond.
21-Jun-16 Swing Basics and Model-View- Controller.
Java Visual Applications CSIS 3701: Advanced Object Oriented Programming.
GUI.1 Graphical User Interfaces GUIs. GUI.2 The Plan Components Flat Layouts Hierarchical Layouts Designing a GUI Coding a GUI.
Presented by Alexey Vedishchev Developing Web-applications with Grails framework American University of Nigeria, 2016 Intro To MVC Architecture.
Observer Pattern Context:
Design Patterns Source: “Design Patterns”, Erich Gamma, Richard Helm, Ralph Johnson, John Vlissides And Created.
GUIs Model/View/Controller Layouts
Animation 12-Sep-18.
Model-View-Controller Design Pattern
Animation 6-Nov-18.
Model-View-Controller
Animation 15-Nov-18.
Animation 18-Nov-18.
Model-View-Controller
Steps to Creating a GUI Interface
Advanced Programming in Java
Animation 25-Feb-19.
CiS 260: App Dev I Chapter 6: GUI and OOD.
Animation 17-Sep-19.
Presentation transcript:

6-Jan-16 Model-View-Controller

2 Design Patterns The hard problem in O-O programming is deciding what objects to have, and what their responsibilities are Design Patterns describe the higher-level organization of solutions to common problems Design patterns are a major topic in O-O design

3 The MVC pattern MVC stands for Model-View-Controller The Model is the actual internal representation The View (or a View) is a way of looking at or displaying the model The Controller provides for user input and modification These three components are usually implemented as separate classes

4 The Model Most programs are supposed to do work, not just be “another pretty face” but there are some exceptions useful programs existed long before GUIs The Model is the part that does the work--it models the actual problem being solved The Model should be independent of both the Controller and the View But it provides services (methods) for them to use Independence gives flexibility, robustness

5 The Controller The Controller decides what the model is to do Often, the user is put in control by means of a GUI in this case, the GUI and the Controller are often the same The Controller and the Model can almost always be separated (what to do versus how to do it) The design of the Controller depends on the Model The Model should not depend on the Controller

6 The View Typically, the user has to be able to see, or view, what the program is doing The View shows what the Model is doing The View is a passive observer; it should not affect the model The Model should be independent of the View, but (but it can provide access methods) The View should not display what the Controller thinks is happening

7 Combining Controller and View Sometimes the Controller and View are combined, especially in small programs Combining the Controller and View is appropriate if they are very interdependent The Model should still be independent Never mix Model code with GUI code!

8 Separation of concerns As always, you want code independence The Model should not be contaminated with control code or display code The View should represent the Model as it really is, not some remembered status The Controller should talk to the Model and View, not manipulate them The Controller can set variables that the Model and View can read

9 The “Reverser” program In this program we combine the Controller and the View (indeed, it’s hard to separate them) The Model, which does the computation (reversing the string), we put in a separate class

10 ReverserGUI.java A bunch of import statements, then... public class ReverserGUI extends JFrame { ReverserModel model = new ReverserModel(); JTextField text = new JTextField(30); JButton button = new JButton("Reverse"); public static void main(String[] args) { ReverserGUI gui = new ReverserGUI(); gui.create(); gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); }... create()... }

11 The create method private void create() { setLayout(new GridLayout(2, 1)); add(text); add(button); button.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { String s = text.getText(); s = model.reverse(s); text.setText(s); } }); pack(); setVisible(true); }

12 The model public class ReverserModel { public String reverse(String s) { StringBuilder builder = new StringBuilder(s); builder.reverse(); return builder.toString(); } }

13 The Bouncing Ball Application Each click of the Step button advances the ball a small amount The step number and ball position are displayed in the status line

14 The Ball Application: Model The Ball Application shows a ball bouncing in a window The Model controls the motion of the ball In this example, the Model must know the size of the window so it knows when the ball should be made to bounce The Model doesn’t need to know anything else about the GUI

15 Observer and Observable java.util provides an Observer interface and an Observable class An Observable is an object that can be “observed” An Observer is “notified” when an object that it is observing announces a change Here’s an analogy: An Observable is like a Button An Observer is like a Listener You have to “attach” a Listener to a Button Another analogy: An Observable is like a bulletin board An Observer is like someone who reads the bulletin board

16 Observable An Observable is an object that can be “observed” An Observer is “notified” when an object that it is observing announces a change When an Observable wants the “world” to know about what it has done, it executes: setChanged(); notifyObservers(); /* or */ notifyObservers( arg ); The arg can be any object The Observable doesn’t know or care “who is looking” But you have attach an Observer to the Observable with: myObservable.addObserver( myObserver ); This is best done in the controller class – not in the model class!

17 Observer Observer is an interface An Observer implements public void update(Observable obs, Object arg) This method is invoked whenever an Observable that it is “listening to” does an addNotify() or addNotify(arg) The obs argument is a reference to the observable object itself If the Observable did addNotify(), the arg is null

18 The Ball Application: View The View needs access to the ball’s state (in this case, its x-y location) For a static drawing, the View doesn’t need to know anything else

19 View I import java.awt.*; import java.util.*; class View extends JPanel implements Observer { Model model; View (Model model) { this.model = model; } // more...

20 View public void paint(Graphics g) { g.setColor(Color.WHITE); g.fillRect(0, 0, getWidth(), getHeight()); g.setColor(Color.RED); g.fillOval(model.getX(), model.getY(), model.BALL_SIZE, model.BALL_SIZE); }

21 View III public void update(Observable obs, Object arg) { repaint(); } } // end class

22 The Ball Application: Controller The Controller tells the Model what to do The Controller tells the View when it needs to refresh the display The Controller doesn’t need to know the inner workings of the Model The Controller doesn’t need to know the inner workings of the View

23 Controller I public class Controller extends Application { JPanel buttonPanel = new JPanel(); JButton stepButton = new JButton("Step"); Model model = new Model(); View view = new View(model); // more... import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*;

24 Controller II public void init() { layOutComponents(); attachListeners(); model.addObserver(view); repaint(); } private void layOutComponents() { setLayout(new BorderLayout()); this.add(BorderLayout.SOUTH, buttonPanel); buttonPanel.add(stepButton); add(BorderLayout.CENTER, view); }

25 Controller III private void attachListeners() { // Attach actions to step button stepButton.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent event) { // Get current size, as it may have changed model.setLimits(view.getWidth(), view.getHeight()); model.makeOneStep(); } }); }

26 Controller IV public static void main(String[] args) { Controller controller = new Controller(); controller.init(); controller.setSize(300, 300); controller.setVisible(true); controller.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE); }

27 Key points A Model does the “business logic” It should be I/O free Communication with the Model is via methods This approach gives maximum flexibility in how the model is used The Controller organizes the program and provides input (control) to the Model The View displays what is going on in the model It should never display what should be going on in the model For example, if you ask to save a file, the View shouldn’t itself tell you that the file has been saved—it should tell you what the model reports Especially in small programs, the Controller and View are often combined

28 The End