io.github.warnotte.obj2gui2.MyChangedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obj2gui2 Show documentation
Show all versions of obj2gui2 Show documentation
This library aimed to generated swing interface base on introspection and annotation of DTOs
package io.github.warnotte.obj2gui2;
import java.util.EventObject;
/**
*
* @author Warnotte Renaud
*
*/
public class MyChangedEvent extends EventObject {
/**
*
*/
private static final long serialVersionUID = -8942475752564844776L;
Object OrignalComponent = null;
public MyChangedEvent(Object source, Object value) {
super(source);
this.OrignalComponent=value;
}
public synchronized Object getOrignalComponent() {
return OrignalComponent;
}
public synchronized void setOrignalComponent(Object orignalComponent) {
OrignalComponent = orignalComponent;
}
}