Package org.sfsoft.patronobserver.base

Examples of org.sfsoft.patronobserver.base.Producto.addObserver()


    cliente.setFechaNacimiento(new GregorianCalendar().getTime());
   
    /*
     * Se añaden observadores a la clase observable
     */
    producto.addObserver(cliente);
    /*
     * Un cambio en la clase observada hará "reaccionar" a la clase observadora
     */
    producto.setStock(23);
  }
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.