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 com.ebay.erl.mobius.util.JVMShutdownNotifier.java

/**
 * Observing JVM shutdown signal and notify
 * objects that register to this when a shutdown
 * signal happened.
 * 
 * <p>

From source file com.microsoft.alm.plugin.idea.ui.common.AbstractModel.java

/**
 * This class is a simple base class for all UI Models.
 * It provides one additional method on to of Observable that combines setChanged and Notify.
 */
public class AbstractModel extends Observable {

From source file com.microsoft.alm.plugin.idea.common.ui.common.AbstractModel.java

/**
 * This class is a simple base class for all UI Models.
 * It provides one additional method on to of Observable that combines setChanged and Notify.
 */
public class AbstractModel extends Observable {

From source file com.rcs.shoe.shop.fx.model.LanguageModel.java

/**
 *
 * @author Rajko
 */
public final class LanguageModel extends Observable {

From source file com.ny.apps.executor.OutputManager.java

/**
 *
 * @Description TODO
 * @author <a href="mailto:mynameisny@qq.com">Tony Joseph</a>
 * @version 1.0
 *

From source file org.vaadin.peholmst.samples.dddwebinar.ui.appointments.model.DoctorModel.java

@Component
@ViewScope
public class DoctorModel extends Observable {

    @Autowired
    LicenseRepository licenseRepository;

From source file Watcher.java

class BeingWatched extends Observable {
    void counter(int period) {
        for (; period >= 0; period--) {
            setChanged();
            notifyObservers(new Integer(period));
            try {

From source file StackImplementation.JStack.java

/**
 *
 * @author TcheutchouaSteve
 */
public class JStack extends Observable {

From source file com.prasilabs.droidwizardlib.core.modelEngines.CoreModelEngine.java

/**
 * CoreModelEngine.
 *
 * ModelEngine is a singleton class runs in application context and takes care of fetching data from REST API, LOCAL
 * DATABASE and from other resources
 *

From source file net.ecfirm.ec.ec1.model.EcModel.java

public abstract class EcModel extends Observable implements EcModelBase {
    protected static EcApp app = null;
    protected static EcConf conf = null;
    protected static Context context = null;
    protected static EcFile file = null;
    protected String nameModel = "";