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

io.github.warnotte.obj2gui2.MyChangedEvent Maven / Gradle / Ivy

Go to download

This library aimed to generated swing interface base on introspection and annotation of DTOs

There is a newer version: 1.3.1
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy