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

org.ocap.environment.EnvironmentEvent Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.ocap.environment;

import java.util.*;

/**
 * The EnvironmentEvent class is used to notify 
 * applications of events relating to environments.
 */
public abstract class EnvironmentEvent  extends EventObject {

	/**
	 * Simple constructor for these events.
	 * @param source the environment which is the source
	 * of this event.
	 */
	public EnvironmentEvent( Environment source )
	{
		super( (Object) source );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy