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

java.beans.PropertyChangeEvent Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package java.beans;

import java.util.EventObject;

public class PropertyChangeEvent extends EventObject {
	String propertyName;

	Object oldValue;

	Object newValue;

	Object propagationId;

	public PropertyChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) {
		super(source);
		this.propertyName = propertyName;
		this.oldValue = oldValue;
		this.newValue = newValue;
	}

	public String getPropertyName() {
		return propertyName;
	}

	public void setPropagationId(Object propagationId) {
		this.propagationId = propagationId;
	}

	public Object getPropagationId() {
		return propagationId;
	}

	public Object getOldValue() {
		return oldValue;
	}

	public Object getNewValue() {
		return newValue;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy