-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFactories.java
More file actions
83 lines (64 loc) · 1.41 KB
/
Copy pathFactories.java
File metadata and controls
83 lines (64 loc) · 1.41 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
package unit9;
interface Service {
void method1();
void method2();
}
interface ServiceFactory {
Service getService();
}
class Implication implements Service {
@Override
public void method1() {
// TODO Auto-generated method stub
System.out.println("implication method1");
}
@Override
public void method2() {
// TODO Auto-generated method stub
System.out.println("implication method2");
}
}
class ImplicationFactory implements ServiceFactory {
@Override
public Service getService() {
// TODO Auto-generated method stub
return new Implication();
}
}
class Implication2 implements Service {
@Override
public void method1() {
// TODO Auto-generated method stub
System.out.println("implication2 method1");
}
@Override
public void method2() {
// TODO Auto-generated method stub
System.out.println("implication2 method2");
}
}
class ImplicationFactory2 implements ServiceFactory {
@Override
public Service getService() {
// TODO Auto-generated method stub
return new Implication2();
}
}
public class Factories {
public static void serviceConsumer(ServiceFactory fact) {
Service service = fact.getService();
service.method1();
service.method2();
}
public static void main(String[] args) {
serviceConsumer(new ImplicationFactory());
serviceConsumer(new ImplicationFactory2());
}
}
/**
*
implication method1
implication method2
implication2 method1
implication2 method2
*/