18 lines
293 B
Java
18 lines
293 B
Java
package patronStrategy;
|
|
|
|
public class Contexto {
|
|
Estrategia estrategia;
|
|
|
|
public Contexto(Estrategia s) {
|
|
this.estrategia = s;
|
|
}
|
|
|
|
public void setEstrategia(Estrategia s) {
|
|
this.estrategia = s;
|
|
}
|
|
|
|
public void ejecutarMetodoEstrategico() {
|
|
estrategia.comportamiento();
|
|
}
|
|
}
|