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 org.hypertopic.RESTDatabase.java

/**
 * Client library for a REST database a la CouchDB.
 * The emphasis is put on improving read performance (cached bulk GET).
 * On _changes, the cache is cleared and the observers are notified.
 * Design pattern: Data Access Object. 
 */

From source file it.unibas.spicygui.controllo.Scenarios.java

public class Scenarios extends Observable {
    //giannisk
    //variables made public static, so that the scenario number is available to DAO classes -needed for the database- before the scenario is added
    public static int maxScenarioNumber = 100000;
    public static List<Integer> listaNumeri = new ArrayList<Integer>();
    public static int lastScenarioNo = 0;

From source file jobhunter.infoempleo.Client.java

public class Client extends Observable {

    private static final Logger l = LoggerFactory.getLogger(Client.class);

    private final String url;

From source file org.apache.solr.kelvin.QueryPerformer.java

public abstract class QueryPerformer extends Observable implements Closeable, IConfigurable {

    public void configure(JsonNode config) throws Exception {
        ResponseAnalyzerLoader loader = new ResponseAnalyzerLoader();
        loader.configure(config.path("responseAnalyzers"));
        this.responseAnalyzers = loader.getAnalyzers();

From source file com.db2eshop.governance.spring.ApplicationContextObserver.java

/**
 * <p>ApplicationContextObserver class.</p>
 *
 * @author Denis Neuling (denisneuling@gmail.com)
 * 
 */

From source file es.udc.gii.common.eaf.algorithm.operator.replace.ReplaceOperator.java

/**
 *
 * @author Grupo Integrado de Ingeniera (<a href="http://www.gii.udc.es">www.gii.udc.es</a>)
 * @since 1.0
 *
 *

From source file io.github.lucaseasedup.logit.config.Property.java

public final class Property extends Observable implements Disposable {
    public Property(String path, PropertyType type, boolean requiresRestart, Object value,
            PropertyValidator validator) {
        if (StringUtils.isBlank(path) || type == null)
            throw new IllegalArgumentException();

From source file org.key2gym.client.ContextManager.java

/**
 * Manages the contexts used by the application.
 * <p/>
 * 
 * The class provides means to login and logout, lookup EJBs within the current
 * context.

From source file com.philips.hsdp.feed.FeedManager.java

/**
 * Copyright (c) 2014-2015 Koninklijke Philips N.V.
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

From source file utils.XMSEventListener.java

/**
 *
 * @author dwolansk
 */
public class XMSEventListener extends Observable implements Runnable {