com.actelion.research.gui.generic.GenericEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
package com.actelion.research.gui.generic;
import java.util.EventObject;
public class GenericEvent extends EventObject {
private int mWhat;
public GenericEvent(int what, Object source) {
super(source);
mWhat = what;
}
public int getWhat() {
return mWhat;
}
}