|
Groovy example source code file (StrangeEventListener.java)
The Groovy StrangeEventListener.java source code
package groovy;
import java.util.EventListener;
import java.beans.PropertyChangeEvent;
public interface StrangeEventListener extends EventListener {
/*
* According to section 6.4.1 of the JavaBeans spec this is legal, but not
* good practice. We need to test what can be done not what should be done
*/
void somethingStrangeHappened(String what, String where);
void somethingChanged(PropertyChangeEvent changeEvent);
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy StrangeEventListener.java source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.