List of usage examples for java.util Observable subclass-usage
From source file org.rifidi.emulator.reader.sharedrc.radio.Antenna.java
/**
* This is representing an rifid antenna. Basically this stores all the Tags in
* the field of this antenna.
*
* It is to be used with the new radio, and is an observable. Tags should be
* directly added to the antenna, and the antenna will notify the radio when the
From source file org.ESLM.Model.ProtoLesson.java
public class ProtoLesson extends Observable implements Iterable<Instruction>, JSONSerializable { private String title; private ArrayList<Instruction> exercises; public ProtoLesson(String title) {
From source file es.udc.gii.common.eaf.algorithm.operator.evaluate.EvaluationOperator.java
/** * * @author Grupo Integrado de Ingeniera (<a href="http://www.gii.udc.es">www.gii.udc.es</a>) * @since 1.0 */ public abstract class EvaluationOperator extends Observable implements Operator {
From source file com.app.model.m3.M3ConfigModel.java
/** * * @author JCHAUT */ public class M3ConfigModel extends Observable implements IEntitiesModel {
From source file org.apache.stratos.messaging.event.EventObservable.java
/** * Event observable definition. */ public abstract class EventObservable extends Observable { private static final Log log = LogFactory.getLog(EventObservable.class);
From source file com.playonlinux.utils.AbstractObservableDirectory.java
public abstract class AbstractObservableDirectory extends Observable implements BackgroundService { protected int checkInterval = 1000; protected File observedDirectory; protected void validate() throws PlayOnLinuxException { if (!observedDirectory.exists()) {
From source file com.breadwallet.tools.manager.CurrencyManager.java
/**
* BreadWallet
* <p>
* Created by Mihail Gutan <mihail@breadwallet.com> on 7/22/15.
* Copyright (c) 2016 breadwallet LLC
* <p>
From source file com.philips.hsdp.feed.LoginManager.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 com.moneydance.modules.features.importlist.io.TransactionFileListener.java
/**
* This <code>FileAlterationListener</code> implementation is notified about
* relevant modifications in the file system. It propagates these modifications
* to its <code>Observer</code>s.
*
* @author Florian J. Breunig
From source file com.fusesource.forge.jmstest.probe.AbstractProbe.java
public abstract class AbstractProbe extends Observable implements Probe { private ProbeDescriptor descriptor = null; private String name; private boolean resetOnRead = false; private boolean active = true;