List of usage examples for java.util Observer interface-usage
From source file rework.MainFrame.java
/** * * @author hourdinf */ public class MainFrame extends javax.swing.JFrame implements Observer {
From source file net.orzo.service.TaskManager.java
/** * @author Tomas Machalek <tomas.machalek@gmail.com> */ @Singleton public class TaskManager implements Observer {
From source file com.github.nethad.clustermeister.provisioning.jppf.JPPFLocalDriver.java
/** * * @author thomas */ public class JPPFLocalDriver implements Observer { private ClustermeisterLauncher launcher = null;
From source file com.google.cast.samples.games.spellcast.SpellcastGameModel.java
/** * Manages game state and fires events as we receive updates from the receiver device. This is * managed by the Application class, and it is effectively a singleton. */ public class SpellcastGameModel implements Observer, GameManagerClient.Listener {
From source file org.jzkit.z3950.util.GenericEventToOriginListenerAdapter.java
/**
* GenericEventToOriginListenerAdapter : Adapts the generic Observer/Observable pattern
* to produce notification messages for a Z
*
* @author Ian Ibbotson ( ian.ibbotson@k-int.com )
* @version $Id: GenericEventToOriginListenerAdapter.java,v 1.3 2005/10/26 13:46:56 ibbo Exp $
From source file es.udc.gii.common.eaf.log.LogTool.java
/**
* This abstract class represents a log tool, this is used to record the information generated
* by the algorithm while its execution.<p>
*
* This tool implements the observer pattern, so the observable objects call to the <i>update</i> method
* to print the information.<p>
From source file net.hgw4.testapp.HGWTest.java
public final class HGWTest implements Observer { private Hal curHal; private Logger testAleLogger; private TempSens0 tempKitchen; private TempSens0 tempBedroom; private JSONObject curDataTempKitchenSens;
From source file interactivenetworksmathematica.TopologyHandler.java
/** * * @author rudolf */ public class TopologyHandler implements Observer { KernelLink _ml = null;
From source file com.android.aft.AFApplicationHelper.activity.AFFragmentActivity.java
public abstract class AFFragmentActivity extends FragmentActivity implements Observer { protected ArrayList<Observable> mLstObservables = new ArrayList<Observable>(); private static boolean mActivityIsInBackground = false; @Override
From source file com.fallahpoor.infocenter.fragments.wifi.WifiFragment.java
/**
* WifiFragment displays some information about Wi-Fi connection of the device
* including: Wi-Fi status, network SSID and so on.
*
* @author Masood Fallahpoor
*/