//This file generated automatically from the MARIUS LP system, please do not edit.

public class Observer implements ObserverIF {

   private String _nombre;
   public Observer(String nombre) { this._nombre = nombre; }
   public void notificar() { 
    System.out.println(this._nombre+" notificado");
   }

} //End of class Observer
