All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bidib.wizard.mvc.logger.view.BidibLogsObservable Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
package org.bidib.wizard.mvc.logger.view;

import java.util.Observable;

public final class BidibLogsObservable extends Observable {

    /**
     * Notify the {@code LogsPane} object when a new log is received.
     * 
     * @param arg
     *            a String representing the received log.
     */
    @Override
    public void notifyObservers(Object arg) {
        setChanged();
        super.notifyObservers(arg);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy