-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuilderTest.java
More file actions
178 lines (139 loc) · 3.46 KB
/
BuilderTest.java
File metadata and controls
178 lines (139 loc) · 3.46 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
A Creational Pattern.
Separate the construction of a complex object from its representation
so that the same construction process can create different representations.
*/
import java.util.Hashtable;
public class BuilderTest {
public static void main(String[] args){
System.out.println("-------------- BUILDER ---------------");
// Create shop and vehicle builders
Shop shop = new Shop();
VehicleBuilder b1 = new ScooterBuilder();
VehicleBuilder b2 = new CarBuilder();
VehicleBuilder b3 = new MotorCycleBuilder();
// Construct and display vehicles
shop.construct( b1 );
b1.getVehicle().show();
shop.construct( b2 );
b2.getVehicle().show();
shop.construct( b3 );
b3.getVehicle().show();
}
}
// Director
class Shop {
Shop() {
}
public void construct(VehicleBuilder vehicleBuilder){
vehicleBuilder.buildFrame();
vehicleBuilder.buildEngine();
vehicleBuilder.buildWheels();
vehicleBuilder.buildDoors();
}
}
// Builder
abstract class VehicleBuilder {
protected Vehicle vehicle;
public Vehicle getVehicle() {
return vehicle;
}
public void setVehicle(Vehicle vehicle) {
this.vehicle = vehicle;
}
abstract public void buildFrame();
abstract public void buildEngine();
abstract public void buildWheels();
abstract public void buildDoors();
}
// "ConcreteBuilder1"
class MotorCycleBuilder extends VehicleBuilder {
public void buildFrame() {
vehicle = new Vehicle( "MotorCycle" );
vehicle.setFrame("MotorCycle Frame");
}
public void buildEngine() {
vehicle.setEngine("500 cc");
}
public void buildWheels() {
vehicle.setNumOfWheels(2);
}
public void buildDoors() {
vehicle.setNumOfDoors(0);
}
}
// "ConcreteBuilder2"
class CarBuilder extends VehicleBuilder {
public void buildFrame() {
vehicle = new Vehicle( "Car" );
vehicle.setFrame("Car Frame");
}
public void buildEngine() {
vehicle.setEngine("2500 cc");
}
public void buildWheels() {
vehicle.setNumOfWheels(4);
}
public void buildDoors() {
vehicle.setNumOfDoors(4);
}
}
// "ConcreteBuilder3"
class ScooterBuilder extends VehicleBuilder {
public void buildFrame() {
vehicle = new Vehicle( "Scooter" );
vehicle.setFrame("Scooter Frame");
}
public void buildEngine() {
vehicle.setEngine("300 cc");
}
public void buildWheels() {
vehicle.setNumOfWheels(2);
}
public void buildDoors() {
vehicle.setNumOfDoors(0);
}
}
// "Product"
class Vehicle {
String type = "";
String frame = "";
String engine = "";
int numOfWheels = 0;
int numOfDoors = 0;
Vehicle( String type ) {
this.type = type;
}
public String getFrame() {
return frame;
}
public void setFrame(String f){
frame = f;
}
public String getEngine() {
return engine;
}
public void setEngine(String e){
engine = e;
}
public int getNumOfWheels() {
return numOfWheels;
}
public void setNumOfWheels(int w){
numOfWheels = w;
}
public int getNumOfDoors() {
return numOfWheels;
}
public void setNumOfDoors(int d){
numOfDoors = d;
}
public void show() {
System.out.println( "---------------------------");
System.out.println( "Vehicle Type: "+ type );
System.out.println( " Frame : " + frame );
System.out.println( " Engine : "+ engine);
System.out.println( " #Wheels: "+ numOfWheels);
System.out.println( " #Doors : "+ numOfDoors);
}
}