-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLab09.java
71 lines (66 loc) · 1.58 KB
/
Lab09.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Lab 09: The Composition/Inheritance Program
// Name:Amir Mousavi
// Oct/31/2013
// Teacher: Christopher Slowley
import java.applet.*;
import java.awt.*;
public class Lab09 extends Applet { //
private static final long serialVersionUID = 1L;
public void paint (Graphics g)
{
House h = new House(g,100); //The House is created
}
}
class rectangle //class rectangle is declared
{
private Color rectangleColor;
public rectangle (Graphics g,Color cc,int x )
{
rectangleColor= cc;
g.setColor(rectangleColor);
g.fillRect(x,250,200,150);
}
}
class square extends rectangle //class square is declared, subclass of rectangle
{ private int x;
public square(Graphics g, Color cc, int x1)
{
super(g, cc, x1);
x = x1;
drawWindow(g);
drawDoor(g);
drawRoof(g);
}
public void drawWindow(Graphics g) //the windos of house
{
g.setColor(Color.white);
g.fillOval(x+100,300,50,50);
g.setColor(Color.black);
g.drawLine(x+125, 300, x+125, 350);
g.drawLine(x+100, 325, x+150, 325);
}
public void drawDoor(Graphics g) //the door of the house
{
g.setColor(Color.blue);
g.fillRect(x+20, 320, 30, 80);
g.setColor(Color.yellow);
g.fillOval(x+20, 350, 5, 5);
}
public void drawRoof(Graphics g) //the roof of the house
{
Polygon roof = new Polygon();
roof.addPoint(x,250);
roof.addPoint(x+200,250);
roof.addPoint(x+100,180);
g.setColor(Color.red);
g.fillPolygon(roof);
}
}
class House //the class house, which passes out the info
{
private square squ;
public House (Graphics g,int x)
{
squ= new square(g,Color.green , 100);
}
}