-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
163 lines (82 loc) · 2.77 KB
/
Program.cs
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
using System;
using System.Collections.Generic;
namespace DoFactory.GangOfFour.Composite.RealWorld
{
class MainApp
{
static void Main()
{
// Creo una estructura de arbol
CompositeElement root = new CompositeElement("Picture");
root.Add(new PrimitiveElement("Red Line"));
root.Add(new PrimitiveElement("Blue Circle"));
root.Add(new PrimitiveElement("Green Box"));
// Agrego una rama
CompositeElement comp = new CompositeElement("Two Circles");
comp.Add(new PrimitiveElement("Black Circle"));
comp.Add(new PrimitiveElement("White Circle"));
root.Add(comp);
// Agrego un elemento primitivo y lo elimino
PrimitiveElement pe = new PrimitiveElement("Yellow Line");
root.Add(pe);
root.Display(1);
root.Remove(pe);
// Muestro los nodos recursivamente
Console.WriteLine("\nDespues de eliminar el nodo primitivo:\n");
root.Display(1);
Console.ReadKey();
}
}
// La clase componente
abstract class DrawingElement
{
protected string _name;
public DrawingElement(string name)
{
this._name = name;
}
public abstract void Add(DrawingElement d);
public abstract void Remove(DrawingElement d);
public abstract void Display(int indent);
}
//La clase hoja
class PrimitiveElement : DrawingElement
{
public PrimitiveElement(string name) : base(name){}
public override void Add(DrawingElement c)
{
Console.WriteLine("Cannot add to a PrimitiveElement");
}
public override void Remove(DrawingElement c)
{
Console.WriteLine("Cannot remove from a PrimitiveElement");
}
public override void Display(int indent)
{
Console.WriteLine(new String('-', indent) + " " + _name);
}
}
// La clase compuesta
class CompositeElement : DrawingElement
{
private List<DrawingElement> elements = new List<DrawingElement>();
public CompositeElement(string name): base(name){}
public override void Add(DrawingElement d)
{
elements.Add(d);
}
public override void Remove(DrawingElement d)
{
elements.Remove(d);
}
public override void Display(int indent)
{
Console.WriteLine(new String('-', indent) + "+ " + _name);
// Muestro cada elemento del nodo
foreach (DrawingElement d in elements)
{
d.Display(indent + 2);
}
}
}
}