Example usage for java.util Observable subclass-usage

List of usage examples for java.util Observable subclass-usage

Introduction

In this page you can find the example usage for java.util Observable subclass-usage.

Usage

From source file tasly.greathealth.thirdparty.order.OrderCommandsStorage.java

/**
 *
 */
public class OrderCommandsStorage extends Observable {

    private static final Logger LOG = OmsLoggerFactory.getTmallorderlog();

From source file net.hgw4.hal.BarionetComm.java

/** BarionetComm mages the cmmunication to Barix hardware
*   http://www.barix.com/Barionet/511/
* 
*/
public class BarionetComm extends Observable implements PossibleMsgCmds {
    private byte[] receiveData = new byte[150];

From source file de.costache.calendar.util.IndexedEventCollection.java

/**
 * @author theodorcostache
 */
class IndexedEventCollection extends Observable implements Observer, EventCollection {

    private final MultiHashMap indexedEvents;

From source file knop.psfj.BeadAverager.java

/**
 * The Class BeadAverager.
 */
public class BeadAverager extends Observable {

    /**

From source file com.alibaba.otter.node.etl.common.io.download.impl.AbstractCommandDownload.java

public abstract class AbstractCommandDownload extends Observable implements Download {

    protected final Logger logger = LoggerFactory.getLogger(getClass());
    protected AtomicBoolean aborted;
    protected String cmd;
    protected AtomicBoolean completed;

From source file concept.variables.Variable.java

/**
 * Implementation of a variable.
 *
 * @param <T>
 */
public class Variable<T> extends Observable {

From source file org.apache.axiom.attachments.lifecycle.impl.FileAccessor.java

/**
 * FileAccessor wraps the attachment temp file. It is created from PartOnFile.
 * The idea behind wrapping the file is to give rumtime an ability to track
 * when the file is accessed with streams or data handler  and accordingly trigger
 * events to handle the the files lifecycle.
 *

From source file Controller.ThreadExcelImport.java

/**
 *
 * @author moises
 */
public class ThreadExcelImport extends Observable implements java.lang.Runnable {

From source file org.cloudfoundry.caldecott.client.TunnelHandler.java

/**
 * The class responsible for handling the actual tunneling communications between a data access client and the
 * Caldecott server app.
 *
 * @author Thomas Risberg
 */

From source file uk.ac.ebi.atlas.solr.admin.monitor.BioentityIndexMonitor.java

/**
 * BioentityIndexMonitor can be polled by clients to get a progress report, useful for synchronous request protocols like HTTP REST,
 * or can be also "observed" by Observer clients that want to be notified of indexing completion or failure
 * (for example useful in tests that need to wait for completion before doing any assertion)
 *
 * A more elaborate but maybe better distributed design would be to have BioentityIndexMonitor only used for polling progress report