java.beans.PropertyChangeEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
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;
}
}