List of usage examples for java.util Observable subclass-usage
From source file nl.eduvpn.app.service.VPNService.java
/** * Service responsible for managing the VPN profiles and the connection. * Created by Daniel Zolnai on 2016-10-13. */ public class VPNService extends Observable implements VpnStatus.StateListener {
From source file pt.ua.dicoogle.core.index.FileIndexer.java
/**
* Indexes files with Lucene
*
* @author Marco Pereira
* @author Lus A. Bastio Silva <bastiao@ua.pt>
*/
From source file com.twosigma.beaker.jvm.object.SimpleEvaluationObject.java
/** * Abstraction around an evaluation, for communication of the state over REST to the plugin. */ public class SimpleEvaluationObject extends Observable { private final static Logger logger = LoggerFactory.getLogger(SimpleEvaluationObject.class.getName()); private static final int OUTPUT_QUEUE_SIZE = 20;
From source file com.rapidminer.gui.new_plotter.templates.PlotterTemplate.java
/**
* Abstract class which all templates for the new plotters have to extend.
*
* @author Marco Boeck
*
*/
From source file userinterface.graph.SeriesSettings.java
/** * A class representing a series of a Graph. This class should not be used to * modify data, use Graph for this. The intention is that this class * represents all properties (colour, lines, heading, etc.) other than data. */ public class SeriesSettings extends Observable implements SettingOwner {
From source file edu.harvard.med.screensaver.ui.arch.datatable.column.TableColumnManager.java
/**
* Notifies observers when set of available columns are changed, either from
* setColumns() being called, or a column's setVisible() being called.
*
* @author drew
*/
From source file es.uvigo.ei.sing.adops.datatypes.ProjectExperiment.java
@Datatype(structure = Structure.COMPLEX, namingMethod = "getName") public class ProjectExperiment extends Observable implements Experiment, Observer { private static final Logger LOG = Logger.getLogger(ProjectExperiment.class); private static final String DIRECTORY_ALLFILES = "allfiles"; private static final String FILE_EXPERIMENT_CONF = "experiment.conf";
From source file net.sourceforge.eclipsetrader.core.CurrencyConverter.java
public class CurrencyConverter extends Observable { private static CurrencyConverter instance = new CurrencyConverter(); List currencies = new ArrayList(); Map map = new HashMap();
From source file com.CPTeam.VselCalc.AutoUpdateApk.java
public class AutoUpdateApk extends Observable { // this class is supposed to be instantiated in any of your activities or, // better yet, in Application subclass. Something along the lines of: // // private AutoUpdateApk aua; <-- you need to add this line of code
From source file com.wondertoys.pokevalue.utils.AutoUpdateApk.java
public class AutoUpdateApk extends Observable { // this class is supposed to be instantiated in any of your activities or, // better yet, in Application subclass. Something along the lines of: // // private AutoUpdateApk aua; <-- you need to add this line of code