Example usage for java.util Observer interface-usage

List of usage examples for java.util Observer interface-usage

Introduction

In this page you can find the example usage for java.util Observer interface-usage.

Usage

From source file org.porphyry.model.Portfolio.java

/**
 * Represents the state of the application 
 * (opened corpora and viewpoints, selected topics)
 */
public class Portfolio extends Observable implements Observer {//>>>>>>>>>>>>>>>

From source file org.apache.fop.logging.LoggingElementListObserver.java

/**
 * <p>Logs all observed element lists.
 * </p>
 * <p>You can enable/disabled individual categories separately, for example for JDK 1.4 logging:
 * </p>
 * <p>org.apache.fop.logging.LoggingElementListObserver.level = INFO</p>

From source file net.sourceforge.eclipsetrader.trading.DataCollector.java

public class DataCollector implements Observer, ICollectionObserver {
    private int minutes = 1;
    private int changes = 15;
    private Map map = new HashMap();
    private Calendar barTime = Calendar.getInstance();
    private Log log = LogFactory.getLog(getClass());

From source file ihm.mainActivity.java

/**
 *
 * @author kenygia
 */
public class mainActivity extends javax.swing.JFrame implements Observer {

From source file org.rifidi.emulator.reader.alien.heartbeat.HeartbeatController.java

/**
 * 
 * @author Kyle Neumeier - kyle@pramari.com
 * @author Matt Dean - matt@pramari.com
 * 
 * This class implements the functionality needed by the alien to send out

From source file com.shinobicontrols.messageme.ConversationListFragment.java

/**
 * A list fragment representing a list of Conversations. This fragment
 * also supports tablet devices by allowing list items to be given an
 * 'activated' state upon selection. This helps indicate which item is
 * currently being viewed in a {@link ConversationDetailFragment}.
 * <p>

From source file main.GUI.java

/**
 *
 * @author Joko
 */
public class GUI extends javax.swing.JFrame implements Observer {

From source file rtspproxy.filter.authentication.SimpleAuthenticationProvider.java

/**
 * @author Matteo Merli
 */
public class SimpleAuthenticationProvider implements AuthenticationProvider, Observer {

    private static final Logger log = LoggerFactory.getLogger(SimpleAuthenticationProvider.class);

From source file net.pejici.easydice.pageradapter.DieHandListAdapter.java

public class DieHandListAdapter extends PagerAdapter implements Observer {
    DieHandList list = null;
    List<DiceRollerView> queue = new ArrayList<DiceRollerView>();
    Context ctx;

    static class DieViewModelPair {

From source file de.weltraumschaf.minesweeper.gui.FieldBoxButton.java

/**
 * Represents a mine filed box button.
 *
 * A button has three states: Closed, open, flagged.
 *
 * @author Sven Strittmatter <weltraumschaf@googlemail.com>