Chapter 2: Using Objects Part 2. Assume you wish to test the behaviour of some method. This is accomplished by providing a tester class: Supply a main.

Slides:



Advertisements
Similar presentations
Chapter 13 Graphics.
Advertisements

1
Feichter_DPG-SYKL03_Bild-01. Feichter_DPG-SYKL03_Bild-02.
Copyright © 2003 Pearson Education, Inc. Slide 1 Computer Systems Organization & Architecture Chapters 8-12 John D. Carpinelli.
Copyright © 2003 Pearson Education, Inc. Slide 1.
Chapter 16 GUI Programming Basics GUI Overview Event-Driven Programming Basics GUI Classes and Packages A Simple Window Program JFrame Class Java Components.
Copyright © 2011, Elsevier Inc. All rights reserved. Chapter 6 Author: Julia Richards and R. Scott Hawley.
Author: Julia Richards and R. Scott Hawley
1 Copyright © 2013 Elsevier Inc. All rights reserved. Appendix 01.
1 Copyright © 2013 Elsevier Inc. All rights reserved. Chapter 38.
Properties Use, share, or modify this drill on mathematic properties. There is too much material for a single class, so you’ll have to select for your.
Chapter 1 Image Slides Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Objectives: Generate and describe sequences. Vocabulary:
UNITED NATIONS Shipment Details Report – January 2006.
15 Copyright © 2005, Oracle. All rights reserved. Adding User Interface Components and Event Handling.
Properties of Real Numbers CommutativeAssociativeDistributive Identity + × Inverse + ×
Exit a Customer Chapter 8. Exit a Customer 8-2 Objectives Perform exit summary process consisting of the following steps: Review service records Close.
FACTORING ax2 + bx + c Think “unfoil” Work down, Show all steps.
© Vinny Cahill 1 Writing a Program in Java. © Vinny Cahill 2 The Hello World Program l Want to write a program to print a message on the screen.
Photo Slideshow Instructions (delete before presenting or this page will show when slideshow loops) 1.Set PowerPoint to work in Outline. View/Normal click.
REVIEW: Arthropod ID. 1. Name the subphylum. 2. Name the subphylum. 3. Name the order.
Break Time Remaining 10:00.
This module: Telling the time
The basics for simulations
Variables Conditionals Boolean Expressions Conditional Statements How a program produces different results based on varying circumstances if, else if,
PP Test Review Sections 6-1 to 6-6
Linked List A linked list consists of a number of links, each of which has a reference to the next link. Adding and removing elements in the middle of.
Chapter 15 Graphics. To paint, you need to specify where to paint. Each component has its own coordinate system with the origin (0, 0) at the upper-left.
Physical Aspects [Reflection Modelling] Hauptseminar: Augmented Reality for Driving Assistance in Cars.
Copyright 2010 by Pearson Education Building Java Programs More Graphics reading: Supplement 3G.
Copyright 2006 by Pearson Education 1 Building Java Programs Supplement 3G: Graphics.
1 Graphical User Interfaces AWT and Swing packages Frames and Panels Components Nested Panels Images Reading for this Lecture: L&L, 3.9 – 3.11.
2D Graphics Drawing Things. Graphics In your GUI, you might want to draw graphics E.g. draw lines, circles, shapes, draw strings etc The Graphics class.
Fun with Swing Chapter 9. Overview Swing vs. AWT Creating windows and panels. Displaying formatted text in panels. Drawing graphics (lines, circles, etc.)
15. Oktober Oktober Oktober 2012.
1 public class Newton { public static double sqrt(double c) { double epsilon = 1E-15; if (c < 0) return Double.NaN; double t = c; while (Math.abs(t - c/t)
Copyright © 2012, Elsevier Inc. All rights Reserved. 1 Chapter 7 Modeling Structure with Blocks.
Basel-ICU-Journal Challenge18/20/ Basel-ICU-Journal Challenge8/20/2014.
We are learning how to read the 24 hour clock
1..
CONTROL VISION Set-up. Step 1 Step 2 Step 3 Step 5 Step 4.
Adding Up In Chunks.
1 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt 10 pt 15 pt 20 pt 25 pt 5 pt Synthetic.
Subtraction: Adding UP
: 3 00.
5 minutes.
Analyzing Genes and Genomes
©Brooks/Cole, 2001 Chapter 12 Derived Types-- Enumerated, Structure and Union.
Essential Cell Biology
Clock will move after 1 minute
PSSA Preparation.
Essential Cell Biology
Energy Generation in Mitochondria and Chlorplasts
Select a time to count down from the clock above
Murach’s OS/390 and z/OS JCLChapter 16, Slide 1 © 2002, Mike Murach & Associates, Inc.
Lesson One: The Beginning
Web Design & Development Lecture 19. Java Graphics 2.
Frame Windows A frame object is used to create a graphical frame window. This frame is used to show information in a graphical application. The JFrame.
CSE 1341 Honors Professor Mark Fontenot Southern Methodist University Note Set 21.
Graphics You draw on a Graphics object The Graphics object cannot directly be created by your code, instead one is generated when the method paintComponent.
1 Drawing C Sc 335 Object-Oriented Programming and Design Rick Mercer.
Chapter 5 Programming Graphics. Chapter Goals To be able to write simple applications To display graphical shapes such as lines and ellipses To use colors.
Chapter 5 Programming Graphics. Chapter Goals To be able to write applications with simple graphical user interfaces To display graphical shapes such.
Graphical User Interface Bonus slides Interaction Between Components & Drawing.
Chapter 2: Using Objects Part 1. To learn about variables To understand the concepts of classes and objects To be able to call methods To learn about.
Chapter 2 storing numbers and creating objects Pages in Horstmann.
Java Concepts Chapter 2 – Graphical Applications Mr. Smith AP Computer Science A.
Big Java by Cay Horstmann Copyright © 2009 by John Wiley & Sons. All rights reserved. In order to display a drawing in a frame, define a class that extends.
Break Time! Graphical User Interface (GUI) NO EXAM….ONLY PROJECT!
Presentation transcript:

Chapter 2: Using Objects Part 2

Assume you wish to test the behaviour of some method. This is accomplished by providing a tester class: Supply a main method. Inside the main method, construct one or more objects. Apply methods to the objects. Display the results of the method calls. Display the values that you expect to get. Implementing a Test Program

01: import java.awt.Rectangle; 02: 03: public class MoveTester 04: { 05: public static void main(String[] args)‏ 06: { 07: Rectangle box = new Rectangle(5, 10, 20, 30); 08: 09: // Move the rectangle 10: box.translate(15, 25); 11: 12: // Print information about the moved rectangle 13: System.out.print("x: "); 14: System.out.println(box.getX()); 15: System.out.println("Expected: 20"); 16: 17: System.out.print("y: "); 18: System.out.println(box.getY()); 19: System.out.println("Expected: 35"); } 20: } ch02/rectangle/MoveTester.java Output: x: 20 Expected: 20 y: 35 Expected: 35

Notice the line: import java.awt.Rectangle; Java classes are grouped into packages You import library classes by specifying the package ( java.awt ) and class name ( Rectangle ) You don't need to import classes in the java.lang package such as String and System Importing Packages

import packageName.ClassName; Example: import java.awt.Rectangle; Purpose: To import a class from a package for use in a program. Syntax 2.4 Importing a Class from a Package

Why doesn't the MoveTester program print the width and height of the rectangle? Answer: Because the translate method doesn't modify the shape of the rectangle. Self Check 2.21

The Random class is defined in the java.util package. What do you need to do in order to use that class in your program? Answer: Add the statement import java.util.Random; at the top of your program. Self Check 2.22

API: Application Programming Interface Lists classes and methods in the Java library The API Documentation

The API Documentation of the Standard Java Library=

The API Documentation for the Rectangle Class

Method Summary

translate Method Documentation

Look at the API documentation of the String class. Which method would you use to obtain the string "hello, world!" from the string "Hello, World!" ? Answer: toLowerCase Self Check 2.23

Object reference describes the location of an object The new operator returns a reference to a new object Rectangle box = new Rectangle(); Multiple object variables can refer to the same object Rectangle box = new Rectangle(5, 10, 20, 30); Rectangle box2 = box; box2.translate(15, 25); Primitive type variables ≠ object variables Object References

Object Variables and Number Variables

Object Variables and Number Variables (Cont.)‏

Animation 2.3

int luckyNumber = 13; Copying Numbers

int luckyNumber = 13; int luckyNumber2 = luckyNumber; Copying Numbers

int luckyNumber = 13; int luckyNumber2 = luckyNumber; luckyNumber2 = 12; Copying Numbers

Rectangle box = new Rectangle(5, 10, 20, 30); Copying Object References

Rectangle box = new Rectangle(5, 10, 20, 30); Rectangle box2 = box; Copying Object References

Rectangle box = new Rectangle(5, 10, 20, 30); Rectangle box2 = box; box2.translate(15, 25); Copying Object References

What is the effect of the assignment greeting2 = greeting ? Answer: Now greeting and greeting2 both refer to the same String object. Self Check 2.25

After calling greeting2.toUpperCase(), what are the contents of greeting and greeting2 ? Answer: Both variables still refer to the same string, and the string has not been modified. Recall that the toUpperCase method constructs a new string that contains uppercase characters, leaving the original string unchanged. Self Check 2.26

To show a frame: Construct an object of the JFrame class: JFrame frame = new JFrame(); Set the size of the frame: frame.setSize(300, 400); If you'd like, set the title of the frame: frame.setTitle("An Empty Frame"); Set the "default close operation": frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Make the frame visible: frame.setVisible(true); Graphical Applications and Frame Windows

A Frame Window

01: import javax.swing.JFrame; 02: 03: public class EmptyFrameViewer 04: { 05: public static void main(String[] args)‏ 06: { 07: JFrame frame = new JFrame(); 08: 09: frame.setSize(300, 400); 10: frame.setTitle("An Empty Frame"); 11: frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 12: 13: frame.setVisible(true); 14: } 15: } ch02/emptyframe/EmptyFrameViewer.java

In order to display a drawing in a frame, define a class that extends the JComponent class. Don’t worry about exactly what this means right now… Just use the code below as a template. Place drawing instructions inside the paintComponent method. That method is called whenever the component needs to be repainted. public class RectangleComponent extends JComponent { public void paintComponent(Graphics g) { Drawing instructions go here } } Drawing on a Component

Graphics class lets you manipulate the graphics state (such as current color) Graphics2D class has methods to draw shape objects Use a cast to recover the Graphics2D object from the Graphics parameter: public class RectangleComponent extends JComponent { public void paintComponent(Graphics g) { // Recover Graphics2D Graphics2D g2 = (Graphics2D) g;... } } Continued Classes Graphics and Graphics2D

Call method draw of the Graphics2D class to draw shapes, such as rectangles, ellipses, line segments, polygons, and arcs: public class RectangleComponent extends JComponent { public void paintComponent(Graphics g) {... Rectangle box = new Rectangle(5, 10, 20, 30); g2.draw(box);... } } Classes Graphics and Graphics2D (cont.)‏

Drawing Rectangles

01: import java.awt.Graphics; 02: import java.awt.Graphics2D; 03: import java.awt.Rectangle; 04: import javax.swing.JComponent; 05: 06: /* A component that draws two rectangles. */ 09: public class RectangleComponent extends JComponent 10: { 11: public void paintComponent(Graphics g) 12: { 13: // Recover Graphics2D 14: Graphics2D g2 = (Graphics2D) g; 15: 16: // Construct a rectangle and draw it 17: Rectangle box = new Rectangle(5, 10, 20, 30); 18: g2.draw(box); 19: 20: // Move rectangle 15 units to the right and 25 units down 21: box.translate(15, 25); 22: 23: // Draw moved rectangle 24: g2.draw(box); 25: } 26: } ch02/rectangles/RectangleComponent.java

1.Construct a frame. Construct an object of your component class: RectangleComponent component = new RectangleComponent(); Add the component to the frame: frame.add(component); Make the frame visible Using a Component

01: import javax.swing.JFrame; 02: 03: public class RectangleViewer 04: { 05: public static void main(String[] args)‏ 06: { 07: JFrame frame = new JFrame(); 08: 09: frame.setSize(300, 400); 10: frame.setTitle("Two rectangles"); 11: frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 12: 13: RectangleComponent component = new RectangleComponent(); 14: frame.add(component); 15: 16: frame.setVisible(true); 17: } 18: } ch02/rectangles/RectangleViewer.java

What happens if you call g.draw(box) instead of g2.draw(box) ? Answer: The compiler complains that g doesn't have a draw method. Self Check 2.31

Ellipse2D.Double describes an ellipse using double precision numbers This class is an inner class – doesn't matter to us except for the import statement: import java.awt.geom.Ellipse2D; // no.Double Must construct and draw the shape Ellipse2D.Double ellipse = new Ellipse2D.Double(x, y, width, height); g2.draw(ellipse); Ellipses

An Ellipse

To draw a line: Line2D.Double segment = new Line2D.Double(x1, y1, x2,y2); g2.draw(segment); or, Point2D.Double from = new Point2D.Double(x1, y1); Point2D.Double to = new Point2D.Double(x2, y2); Line2D.Double segment = new Line2D.Double(from, to); g2.draw(segment); Drawing Lines

g2.drawString(“Message”, 50, 100); Drawing Text

Standard colors Color.BLUE, Color.RED, Color.PINK etc. Specify red, green, blue between 0 and 255 Color magenta = new Color(255, 0, 255); Set color in graphics context g2.setColor(magenta); Color is used when drawing and filling shapes g2.fill(rectangle); // filled with current color Colors

255, 255, 0Color.YELLOW 255, 255, 255Color.WHITE 255, 0, 0Color.RED 255, 175, 175Color.PINK 255, 200, 0Color.ORANGE 255, 0, 255Color.MAGENTA 0, 255, 0Color.GREEN 192, 192, 192Color.LIGHTGRAY 64, 64, 64Color.DARKGRAY 128, 128, 128Color.GRAY 0, 255, 255Color.CYAN 0, 0, 255Color.BLUE 0, 0, 0Color.BLACK RGB ValueColor Predefined Colors and Their RGB Values

Alien Face

01: import java.awt.Color; 02: import java.awt.Graphics; 03: import java.awt.Graphics2D; 04: import java.awt.Rectangle; 05: import java.awt.geom.Ellipse2D; 06: import java.awt.geom.Line2D; 07: import javax.swing.JPanel; 08: import javax.swing.JComponent; 09: 10: /** 11: A component that draws an alien face 12: */ 13: public class FaceComponent extends JComponent 14: { 15: public void paintComponent(Graphics g)‏ 16: { 17: // Recover Graphics2D 18: Graphics2D g2 = (Graphics2D) g; 19: Continued ch02/faceviewer/FaceComponent.java

20: // Draw the head 21: Ellipse2D.Double head = new Ellipse2D.Double(5, 10, 100, 150); 22: g2.draw(head); 23: 24: // Draw the eyes 25: Line2D.Double eye1 = new Line2D.Double(25, 70, 45, 90); 26: g2.draw(eye1); 27: 28: Line2D.Double eye2 = new Line2D.Double(85, 70, 65, 90); 29: g2.draw(eye2); 30: 31: // Draw the mouth 32: Rectangle mouth = new Rectangle(30, 130, 50, 5); 33: g2.setColor(Color.RED); 34: g2.fill(mouth); 35: 36: // Draw the greeting 37: g2.setColor(Color.BLUE); 38: g2.drawString("Hello, World!", 5, 175); 39: } 40: } ch02/faceviewer/FaceComponent.java (cont.)‏

01: import javax.swing.JFrame; 02: 03: public class FaceViewer 04: { 05: public static void main(String[] args)‏ 06: { 07: JFrame frame = new JFrame(); 08: frame.setSize(300, 400); 09: frame.setTitle("An Alien Face"); 10: frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 11: 12: FaceComponent component = new FaceComponent(); 13: frame.add(component); 14: 15: frame.setVisible(true); 16: } 17: } ch02/faceviewer/FaceViewer.java

Give instructions to draw a circle with center (100, 100) and radius 25. Answer: g2.draw(new Ellipse2D.Double(75, 75, 50, 50)); Self Check 2.32

Give instructions to draw a letter "V" by drawing two line segments. Answer: Line2D.Double segment1 = new Line2D.Double(0, 0, 10, 30); g2.draw(segment1); Line2D.Double segment2 = new Line2D.Double(10, 30, 20,0); g2.draw(segment2); Self Check 2.33

Give instructions to draw a string consisting of the letter "V". Answer: g2.drawString("V", 0, 30); Self Check 2.34

What are the RGB color values of Color.BLUE ? Answer: 0, 0, and 255 Self Check 2.35

How do you draw a yellow square on a red background? Answer: First fill a big red square, then fill a small yellow square inside: g2.setColor(Color.RED); g2.fill(new Rectangle(0, 0, 200, 200)); g2.setColor(Color.YELLOW); g2.fill(new Rectangle(50, 50, 100, 100)); Self Check 2.36