Exemplo n.º 1
0
 public EstadoCreatedEnlace(ItHojaEnlace context) : base(context)
 {
     context.IsDone = false;
 }
Exemplo n.º 2
0
 public EstadoDoneEnlace(ItHojaEnlace context) : base(context)
 {
     Context.IsDone = true;
 }
 public EstadoItEnlace(ItHojaEnlace context)
 {
     this.context = context;
 }
 public EstadoRootEnlace(ItHojaEnlace context) : base(context)
 {
     context.Current = context.Raiz;
     context.IsDone  = false;
 }