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

aima.core.agent.EnvironmentViewNotifier Maven / Gradle / Ivy

Go to download

AIMA-Java Core Algorithms from the book Artificial Intelligence a Modern Approach 3rd Ed.

The newest version!
package aima.core.agent;

/**
 * @author Ciaran O'Reilly
 * 
 */
public interface EnvironmentViewNotifier {
	/**
	 * A simple notification message, to be forwarded to an Environment's
	 * registered EnvironmentViews.
	 * 
	 * @param msg
	 *            the message to be forwarded to the EnvironmentViews.
	 */
	void notifyViews(String msg);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy