Skip to content

Commit ca3a4ec

Browse files
authored
Update README.md
Deleting classification by scope
1 parent 59bd7e6 commit ca3a4ec

File tree

1 file changed

+25
-30
lines changed

1 file changed

+25
-30
lines changed

README.md

Lines changed: 25 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -10,49 +10,44 @@ La siguiente es una lista de patrones de diseño con descripciones breves y con
1010

1111
## <a name="lista-de-patrones">Lista de Patrones de Diseño.</a>
1212

13-
Ámbito:
14-
15-
* [**C**] Clase
16-
* [**O**] Objeto
17-
1813
### Patrones de Creación (Creational Patterns)
1914

2015
Relativos al proceso de creación de un objeto.
2116

22-
* [Abstract Factory](#abstract-factory) [**O**]
23-
* [Builder](#builder) [**O**]
24-
* [Factory o Factory Method](#factory) [**C**]
25-
* [Prototype](#prototype) [**O**]
26-
* [Singleton](#singleton) [**O**]
27-
* [Object Pool](#objectpool) [**O**]
17+
* [Abstract Factory](#abstract-factory)
18+
* [Builder](#builder)
19+
* [Factory o Factory Method](#factory)
20+
* [Prototype](#prototype)
21+
* [Singleton](#singleton)
22+
* [Object Pool](#objectpool)
2823

2924
### Patrones de Estructura (Structural Patterns)
3025

3126
Composición de clases u objetos.
3227

33-
* [Adapter](#adapter) [**O**] [**C**]
34-
* [Composite](#composite) [**O**]
35-
* [Decorator](#decorator) [**O**]
36-
* [Facade](#facade) [**O**]
37-
* [Proxy](#proxy) [**O**]
38-
* [Bridge](#bridge) [**O**]
39-
* [Flyweight](#flyweigh) [**O**]
28+
* [Adapter](#adapter)
29+
* [Composite](#composite)
30+
* [Decorator](#decorator)
31+
* [Facade](#facade)
32+
* [Proxy](#proxy)
33+
* [Bridge](#bridge)
34+
* [Flyweight](#flyweigh)
4035

4136
### Patrones de Comportamiento (Behavioral Patterns)
4237

4338
Forma en que las clases u objetos interaccionan y distribuyen funcionalidades.
4439

45-
* [Command](#command) [**O**]
46-
* [Observer](#observer) [**O**]
47-
* [Strategy](#strategy) [**O**]
48-
* [Chain of Responsability](#chain) [**O**]
49-
* [Memento](#memento) [**O**]
50-
* [Mediator](#mediator) [**O**]
51-
* [Template method](#template) [**C**]
52-
* [Iterator](#iterator) [**O**]
53-
* [Visitor](#visitor) [**O**]
54-
* [State](#state) [**O**]
55-
* [Interpreter](#interpreter) [**C**]
40+
* [Command](#command)
41+
* [Observer](#observer)
42+
* [Strategy](#strategy)
43+
* [Chain of Responsability](#chain)
44+
* [Memento](#memento)
45+
* [Mediator](#mediator)
46+
* [Template method](#template)
47+
* [Iterator](#iterator)
48+
* [Visitor](#visitor)
49+
* [State](#state)
50+
* [Interpreter](#interpreter)
5651

5752
## <a name="strategy">Strategy</a> [&#8593;](#lista-de-patrones)
5853

@@ -463,4 +458,4 @@ Si hay demasiadas implementaciones de la interface visitor, se hace dificil exte
463458
**Ejemplos:**
464459
* [SQL](https://github.com/peterm85/design-patterns/tree/master/src/interpreter/examples/sql)
465460

466-
**Referencia:** [https://www.baeldung.com/java-interpreter-pattern](https://www.baeldung.com/java-interpreter-pattern)
461+
**Referencia:** [https://www.baeldung.com/java-interpreter-pattern](https://www.baeldung.com/java-interpreter-pattern)

0 commit comments

Comments
 (0)