Example usage for java.util Observer interface-usage

List of usage examples for java.util Observer interface-usage

Introduction

In this page you can find the example usage for java.util Observer interface-usage.

Usage

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 it.unibas.spicygui.controllo.file.ActionCloseMappingTask.java

public class ActionCloseMappingTask extends CallableSystemAction implements Observer {

    private static Log logger = LogFactory.getLog(ActionCloseMappingTask.class);
    private DAOHandleDB daoDropDB = new DAOHandleDB();
    private ActionSaveMappingTask actionSaveMappingTask;
    private Modello modello;

From source file org.rifidi.ui.ide.views.antennaview.TagViewer.java

/**
 * This is the table where the tags will be displayed in the UI. It's setting
 * the name of the table columns, adding the drag&drop support and actions like
 * delete tag from antenna.
 * 
 * @author Jochen Mader - jochen@pramari.com

From source file edu.ucla.stat.SOCR.applications.demo.PortfolioApplication.java

/**
 * The triangle experiment is to break a stick at random and see if the pieces
 * form a triangle. If so, is the triangle acute or obtuse?
 */
public class PortfolioApplication extends Application implements Observer, IExperiment, ChartMouseListener {

From source file it.unibas.spicygui.controllo.addtable.ActionAddSourceTable.java

public final class ActionAddSourceTable extends CallableSystemAction implements Observer {

    private static Log logger = LogFactory.getLog(ActionAddSourceTable.class);
    private WizardDescriptor.Panel[] panels;
    private Modello modello;
    private LastActionBean lastActionBean;

From source file org.kontalk.view.UserListView.java

/**
 * Display all user (aka contacts) in a brief list.
 * @author Alexander Bikadorov <abiku@cs.tu-berlin.de>
 */
final class UserListView extends TableView<UserItem, User> implements Observer {

From source file org.zaproxy.zap.extension.httppanelviews.syntaxhighlight.HttpPanelSyntaxHighlightTextArea.java

public abstract class HttpPanelSyntaxHighlightTextArea extends RSyntaxTextArea implements Observer {

    private static final long serialVersionUID = -9082089105656842054L;

    private static Logger log = Logger.getLogger(HttpPanelSyntaxHighlightTextArea.class);

From source file org.hydracache.client.partition.PartitionAwareClient.java

/**
 * Manages a partition of nodes and uses an implementation of HydraCacheClient
 * to execute requests against the distributed cache.
 * 
 * @author Tan Quach
 * @since 1.0

From source file org.rdv.ui.ConsoleDialog.java

public class ConsoleDialog extends JDialog implements java.util.Observer {
    /** serialization version identifier */
    private static final long serialVersionUID = -8875776463661389468L;
    private static final int messageLimit = 2048;

    static MessageBuffer messageBuffer = new MessageBuffer();

From source file org.sakaiproject.memory.impl.BasicMemoryService.java

/**
 * <p>
 * BasicMemoryService is an implementation for the MemoryService which reports memory usage and runs a periodic garbage collection to keep memory available.
 * </p>
 */
public abstract class BasicMemoryService implements MemoryService, Observer {