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

org.valkyriercp.core.Messagable Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package org.valkyriercp.core;

/**
 * An interface to be implemented by objects that are capable of receiving messages to be
 * provided to the user.
 *
 * @author Keith Donald
 */
public interface Messagable extends PropertyChangePublisher {

	/** The name of the message property, to be used for publishing update events. */
	public static final String MESSAGE_PROPERTY = "message";

    /**
     * Set the message.
     * @param message The message.
     */
    public void setMessage(Message message);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy