Package org.jboss.aspects.patterns.observable

Examples of org.jboss.aspects.patterns.observable.Subject


   public void testAll() throws Exception
   {
      Temperature temperature = new Temperature();
      LogUtil logUtil = new LogUtil();
     
      Subject subject = (Subject) temperature;
      Observer observer = (Observer) logUtil;
     
      subject.addObserver(observer);
     
      temperature.setTemperature(10);
      assertEquals("Temperature=10", logUtil.lastLog);
   }
View Full Code Here

TOP

Related Classes of org.jboss.aspects.patterns.observable.Subject

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.