Package org.sfsoft.patronobserverhilos.base

Examples of org.sfsoft.patronobserverhilos.base.TareaObserver


*/
public class Principal {

  public static void main(String args[]) {
   
    TareaObserver observador = new TareaObserver();
    TareaObservable observable = new TareaObservable();
    observable.addObserver(observador);

    Thread hilo = new Thread(observable);
    hilo.start();
View Full Code Here

TOP

Related Classes of org.sfsoft.patronobserverhilos.base.TareaObserver

Copyright © 2018 www.massapicom. 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.